Switch to compiler-tester
[mono.git] / mcs / tests / 2test-a5.cs
diff --git a/mcs/tests/2test-a5.cs b/mcs/tests/2test-a5.cs
deleted file mode 100644 (file)
index 290ebe2..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-delegate void S ();
-using System;
-
-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);
-       }
-}