Switch to compiler-tester
[mono.git] / mcs / tests / gen-152.cs
diff --git a/mcs/tests/gen-152.cs b/mcs/tests/gen-152.cs
deleted file mode 100755 (executable)
index 35f0628..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-using System;
-
-public interface IFoo
-{
-       IFoo Hello ();
-}
-
-public interface IFoo<T> : IFoo
-{
-       new IFoo<T> Hello ();
-}
-
-public interface ICollectionValue<T>: IFoo<T>
-{
-}
-
-public interface ICollection<T>: ICollectionValue<T>
-{ }
-
-public abstract class EnumerableBase<T> : IFoo<T>
-{
-       public abstract IFoo<T> Hello();
-
-       IFoo IFoo.Hello ()
-       {
-               return Hello ();
-       }
-}
-
-public abstract class CollectionBase<T> : EnumerableBase<T>
-{
-}
-
-public class HashBag<T>: CollectionBase<T>, ICollection<T>
-{
-       public override IFoo<T> Hello ()
-       {
-               return this;
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-       }
-}