Switch to compiler-tester
[mono.git] / mcs / tests / gen-57.cs
diff --git a/mcs/tests/gen-57.cs b/mcs/tests/gen-57.cs
deleted file mode 100644 (file)
index e3ba73b..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-
-interface IHello<T>
-{
-       void Print (T t);
-}
-
-interface Foo
-{
-       IHello<U> Test<U> ();
-}
-
-class Hello<T> : IHello<T>, Foo
-{
-       public void Print (T t)
-       {
-               Console.WriteLine ("Hello: {0}", t);
-       }
-
-       public IHello<U> Test<U> ()
-       {
-               return new Hello<U> ();
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-               Hello<int> hello = new Hello<int> ();
-               hello.Print (5);
-               hello.Test<float> ().Print (3.14F);
-
-               IHello<string> foo = hello.Test<string> ();
-               foo.Print ("World");
-       }
-}