Switch to compiler-tester
[mono.git] / mcs / tests / gen-14.cs
diff --git a/mcs/tests/gen-14.cs b/mcs/tests/gen-14.cs
deleted file mode 100644 (file)
index 69b232d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-public class Stack<S>
-{
-       public Stack (S s)
-       { }
-
-       public void Push (S s)
-       { }
-}
-
-public class X
-{
-       static void Main ()
-       {
-               Stack<int> s1 = new Stack<int> (3);
-               s1.Push (4);
-
-               Stack<string> s2 = new Stack<string> ("Hello");
-               s2.Push ("Test");
-       }
-}