Switch to compiler-tester
[mono.git] / mcs / tests / 2test-a2.cs
diff --git a/mcs/tests/2test-a2.cs b/mcs/tests/2test-a2.cs
deleted file mode 100644 (file)
index 0bb2390..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-delegate void S ();
-
-class X {
-
-       //
-       // DO NOT ADD ANYTHING ELSE TO THIS TEST
-       //
-       static int Main ()
-       {
-               int a;
-
-               S b = delegate {
-                       a = 2;
-               };
-
-               return 0;
-       }
-}