Switch to compiler-tester
[mono.git] / mcs / tests / gen-18.cs
diff --git a/mcs/tests/gen-18.cs b/mcs/tests/gen-18.cs
deleted file mode 100644 (file)
index 92f38ce..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-public class Stack
-{
-       public Stack ()
-       { }
-
-       public void Hello<T> (T t)
-       { }
-}
-
-public class X
-{
-       public static void Foo (Stack stack)
-       {
-               stack.Hello<string> ("Hello World");
-       }
-
-       static void Main ()
-       {
-               Stack stack = new Stack ();
-               Foo (stack);
-       }
-}