Switch to compiler-tester
[mono.git] / mcs / tests / test-anon-04.cs
1 //
2 // Capturing test.
3 //
4 using System;
5
6 delegate void S ();
7
8 class X {
9         static void Main ()
10         {
11                 int a = 1;
12                 S b = delegate {
13                         float f = 1;
14                         Console.WriteLine (a);
15                         if (f == 2)
16                                 return;
17                 };
18                 b ();
19                 Console.WriteLine ("Back, got " + a);
20         }
21 }