eol
[mcs.git] / tests / test-anon-08.cs
blob40602f3a2745c9266495dce407d0fb30d66e8f68
1 //
2 // Tests assignment of a captured variable to another
3 // Do not add anything else to this test.
4 //
5 delegate void S ();
7 class X {
9 //
10 // DO NOT ADD ANYTHING ELSE TO THIS TEST
12 static int Main ()
14 int a = 2;
15 int b = 1;
16 S d = delegate {
17 a = b;
20 return 0;