Switch to compiler-tester
[mono.git] / mcs / tests / gen-17-exe.cs
diff --git a/mcs/tests/gen-17-exe.cs b/mcs/tests/gen-17-exe.cs
deleted file mode 100644 (file)
index a2ad264..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Compiler options: -r:gen-17-dll.dll
-
-public class X
-{
-       public static void Foo (Stack stack)
-       {
-               stack.Hello<string> ("Hello World");
-       }
-
-       static void Main ()
-       {
-               Stack stack = new Stack ();
-               Foo (stack);
-       }
-}