Switch to compiler-tester
[mono.git] / mcs / tests / gen-64.cs
diff --git a/mcs/tests/gen-64.cs b/mcs/tests/gen-64.cs
deleted file mode 100644 (file)
index 8df8379..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-using System;
-
-public interface IHello<T>
-{ }
-
-public interface IFoo<T>
-{
-       IHello<T> GetHello ();
-}
-
-public interface IBar<T> : IFoo<T>
-{ }
-
-public class Foo<T> : IBar<T>, IFoo<T>
-{
-       public Hello GetHello ()
-       {
-               return new Hello (this);
-       }
-
-       IHello<T> IFoo<T>.GetHello ()
-       {
-               return new Hello (this);
-       }
-
-       public class Hello : IHello<T>
-       {
-               public readonly Foo<T> Foo;
-
-               public Hello (Foo<T> foo)
-               {
-                       this.Foo = foo;
-               }
-       }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}