Switch to compiler-tester
[mono.git] / mcs / tests / 2test-18.cs
diff --git a/mcs/tests/2test-18.cs b/mcs/tests/2test-18.cs
deleted file mode 100644 (file)
index 9a865b1..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-public class Foo {
-       delegate Inner foo_fn(string s);
-       public static void Main()
-       {
-               foo_fn f = delegate (string s) {
-                       return new Inner(s + s);
-               };
-               f ("Test");
-       }
-
-       class Inner
-       {
-               public Inner (string s)
-               { }
-       }
-}