1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 17:08:00 +02:00
Beef/IDE/Tests/BugW007/src/Program.bf

29 lines
283 B
Beef

#pragma warning disable 168
using System;
using System.Collections;
namespace Bug //Test
{
struct Zonkle
{
int mA;
}
class Zorp
{
Dictionary<int, Zonkle*> mDict;
}
}
namespace Bug
{
class Program
{
public static int Main(String[] args)
{
return 0;
}
}
}