1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00
Beef/IDE/Tests/Test1/src/Data01.bf
2019-11-30 13:18:07 -08:00

31 lines
307 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;
int q = 999;
//Test_End
}
}
}