1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-03 06:45:59 +02:00
Beef/IDEHelper/Tests/src/Lookups.bf

41 lines
487 B
Beef
Raw Normal View History

2025-05-18 12:13:15 +02:00
#pragma warning disable 168
namespace Tests;
namespace A.B
{
class Zonk<T>
{
public static int sVal = 123;
}
static
{
public static void Main()
{
global::B.Init();
global::A.B.Zonk<int>.sVal = 234;
global::B.MethodT<float>();
global::System.String str = null;
}
}
}
namespace B
{
static
{
public static void Init()
{
}
public static void MethodT<T>()
{
}
}
}
class Lookups
{
}