Switch to compiler-tester
[mono.git] / mcs / tests / gen-22.cs
diff --git a/mcs/tests/gen-22.cs b/mcs/tests/gen-22.cs
deleted file mode 100644 (file)
index 1a7df65..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// A non-generic type may have a closed constructed type as its parent
-
-class Foo<T>
-{
-       public void Hello ()
-       { }
-
-       public void World (T t)
-       {
-               Hello ();
-       }
-}
-
-class Bar : Foo<int>
-{
-       public void Test ()
-       {
-               Hello ();
-               World (4);
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-               Bar bar = new Bar ();
-               bar.Test ();
-       }
-}