Switch to compiler-tester
[mono.git] / mcs / tests / gen-86.cs
diff --git a/mcs/tests/gen-86.cs b/mcs/tests/gen-86.cs
deleted file mode 100644 (file)
index 34f0942..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-public interface IFoo<S>
-{ }
-
-public class ArrayList<T>
-{
-        public virtual int InsertAll (IFoo<T> foo)
-        {
-                return 0;
-        }
-
-        public virtual int InsertAll<U> (IFoo<U> foo)
-                where U : T
-        {
-                return 1;
-        }
-
-        public virtual int AddAll (IFoo<T> foo)
-        {
-                return InsertAll (foo);
-        }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}