a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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;
|
|
}
|
|
}
|