(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / tests / a-capture4.cs
blobb3e69ebd28b03b01fb166e79cb2c185e107fd6b6
1 //
2 // Capturing test.
3 //
4 delegate void S ();
5 using System;
7 class X {
8 static void Main ()
10 int a = 1;
11 S b = delegate {
12 float f = 1;
13 Console.WriteLine (a);
14 if (f == 2)
15 return;
17 b ();
18 Console.WriteLine ("Back, got " + a);