Switch to compiler-tester
[mono.git] / mcs / tests / gen-71.cs
diff --git a/mcs/tests/gen-71.cs b/mcs/tests/gen-71.cs
deleted file mode 100644 (file)
index b0a7857..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-
-class Foo<T>
-{
-       public T Test<U> (U u)
-               where U : T
-       {
-               return u;
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-               Foo<X> foo = new Foo<X> ();
-
-               Y y = new Y ();
-               X x = foo.Test<Y> (y);
-       }
-}
-
-class Y : X
-{
-}