Switch to compiler-tester
[mono.git] / mcs / tests / a-capture4.cs
diff --git a/mcs/tests/a-capture4.cs b/mcs/tests/a-capture4.cs
deleted file mode 100644 (file)
index 50985f4..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-//
-// Capturing test.
-//
-using System;
-
-delegate void S ();
-
-class X {
-       static void Main ()
-       {
-               int a = 1;
-               S b = delegate {
-                       float f = 1;
-                       Console.WriteLine (a);
-                       if (f == 2)
-                               return;
-               };
-               b ();
-               Console.WriteLine ("Back, got " + a);
-       }
-}