linux-packaging-mono/mcs/tests/test-anon-01.cs

19 lines
174 B
C#
Raw Normal View History

delegate void S ();
class X {
//
// DO NOT ADD ANYTHING ELSE TO THIS TEST
//
public static int Main ()
{
int a;
S b = delegate {
a = 2;
};
return 0;
}
}