Switch to compiler-tester
[mono.git] / mcs / tests / a-capture8.cs
diff --git a/mcs/tests/a-capture8.cs b/mcs/tests/a-capture8.cs
deleted file mode 100644 (file)
index 40602f3..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// Tests assignment of a captured variable to another
-// Do not add anything else to this test.
-//
-delegate void S ();
-
-class X {
-
-       //
-       // DO NOT ADD ANYTHING ELSE TO THIS TEST
-       //
-       static int Main ()
-       {
-               int a = 2;
-               int b = 1;
-               S d = delegate {
-                       a = b;
-               };
-
-               return 0;
-       }
-}