1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 08:06:04 +02:00
Beef/IDEHelper/Tests/src/UsingStatic.bf

46 lines
540 B
Beef
Raw Normal View History

#pragma warning disable 168
using static Tests.USOuter;
using static Tests.USOuter.USInnerC<int>;
namespace Tests
{
class USOuter
{
public static int sVal0 = 123;
public class USInnerA
{
public class USInnerB<T>
{
}
}
public class USInnerC<T>
{
public class USInnerD
{
}
public class USInnerE<T2>
{
}
}
}
class UsingStatic
{
public static void TestBasics()
{
USInnerA innerA;
USInnerA.USInnerB<int> innerB;
int val = sVal0;
USInnerD id;
USInnerE<float> ie;
}
}
}