1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 15:46:05 +02:00
Beef/IDE/Tests/Test1/src/Data01.bf

32 lines
307 B
Beef
Raw Normal View History

2019-11-29 09:22:18 -08:00
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;
2019-11-30 13:18:07 -08:00
int q = 999;
2019-11-29 09:22:18 -08:00
//Test_End
}
}
}