mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 23:56:05 +02:00
30 lines
290 B
Beef
30 lines
290 B
Beef
![]() |
using System;
|
||
|
|
||
|
#pragma warning disable 168
|
||
|
|
||
|
namespace IDETest
|
||
|
{
|
||
|
class Data01
|
||
|
{
|
||
|
struct Base
|
||
|
{
|
||
|
int32 mA;
|
||
|
int64 mB;
|
||
|
}
|
||
|
|
||
|
struct Derived : Base
|
||
|
{
|
||
|
int8 mC;
|
||
|
}
|
||
|
|
||
|
public static void Test()
|
||
|
{
|
||
|
//Test_Start
|
||
|
Derived dr = .();
|
||
|
Int iVal = (.)123;
|
||
|
|
||
|
//Test_End
|
||
|
}
|
||
|
}
|
||
|
}
|