mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 01:18:02 +02:00
30 lines
283 B
Beef
30 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;
|
||
|
}
|
||
|
}
|
||
|
}
|