Switch to compiler-tester
[mono.git] / mcs / tests / gen-60.cs
diff --git a/mcs/tests/gen-60.cs b/mcs/tests/gen-60.cs
deleted file mode 100644 (file)
index 446d87b..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-
-interface IFoo
-{
-       MyList<U> Map<U> ();
-}
-
-class MyList<T>
-{
-       public void Hello (T t)
-       {
-               Console.WriteLine (t);
-       }
-}
-
-class Foo : IFoo
-{
-       public MyList<T> Map<T> ()
-       {
-               return new MyList<T> ();
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-               Foo foo = new Foo ();
-               MyList<int> list = foo.Map<int> ();
-               list.Hello (9);
-       }
-}