(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / tests / 2test-a4.cs
blobebf4060505f41032bdb66fbc4bf38b7a7df04408
1 delegate void S ();
2 using System;
4 class X {
5 static void Main ()
7 int a = 1;
8 S b = delegate {
9 a = 2;
11 b ();
12 Console.WriteLine ("Back, got " + a);