Switch to compiler-tester
[mono.git] / mcs / tests / gen-12.cs
diff --git a/mcs/tests/gen-12.cs b/mcs/tests/gen-12.cs
deleted file mode 100644 (file)
index 4ef97c7..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// A generic type definition may have another generic type
-// definition as its parent.
-
-class Stack<S>
-{
-       public void Hello (S s)
-       { }             
-}
-
-class Test<T> : Stack<T>
-{
-       public void Foo (T t)
-       { }
-}
-
-class X
-{
-       Test<int> test;
-
-       void Test ()
-       {
-               test.Foo (4);
-               test.Hello (3);
-       }
-
-       static void Main ()
-       { }
-}