Switch to compiler-tester
[mono.git] / mcs / tests / 2test-a10.cs
diff --git a/mcs/tests/2test-a10.cs b/mcs/tests/2test-a10.cs
deleted file mode 100644 (file)
index 8b71694..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-using System;
-
-delegate int D ();
-
-class X {
-
-       static void Main ()
-       {
-               D x = T (1);
-
-               Console.WriteLine ("Should be 2={0}", x ());
-       }
-
-       static D T (int a)
-       {
-               D d = delegate {
-                       a = a + 1;
-                       return a;
-               };
-
-               return d;
-       }
-}