mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 17:08:00 +02:00
29 lines
283 B
Beef
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;
|
|
}
|
|
}
|
|
}
|