Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-anon-01.cs
1 delegate void S ();
2
3 class X {
4
5         //
6         // DO NOT ADD ANYTHING ELSE TO THIS TEST
7         //
8         public static int Main ()
9         {
10                 int a;
11
12                 S b = delegate {
13                         a = 2;
14                 };
15
16                 return 0;
17         }
18 }