[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-anon-04.cs
blob7cbec62f14f6b9da0e5f2595c9fe66e6cc3c4a3c
1 //
2 // Capturing test.
3 //
4 using System;
6 delegate void S ();
8 class X {
9 public static void Main ()
11 int a = 1;
12 S b = delegate {
13 float f = 1;
14 Console.WriteLine (a);
15 if (f == 2)
16 return;
18 b ();
19 Console.WriteLine ("Back, got " + a);