19 lines
174 B
C#
19 lines
174 B
C#
|
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;
|
||
|
}
|
||
|
}
|