Switch to compiler-tester
[mono.git] / mcs / tests / gen-75.cs
diff --git a/mcs/tests/gen-75.cs b/mcs/tests/gen-75.cs
deleted file mode 100644 (file)
index 9c7c61b..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-public interface IExtensible<T>
-{
-       void AddAll<U> (U item)
-               where U : T;
-}
-
-public class ArrayList<T> : IExtensible<T>
-{
-        void IExtensible<T>.AddAll<U> (U item)
-        { }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}