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