Switch to compiler-tester
[mono.git] / mcs / tests / gen-110.cs
diff --git a/mcs/tests/gen-110.cs b/mcs/tests/gen-110.cs
deleted file mode 100644 (file)
index 012bc2e..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-using System;
-
-public interface IList<R>
-{
-       int Map<S> (S item);
-}
-
-public class List<T> : IList<T>
-{
-       public int Map<U> (U item)
-       {
-               return 1;
-       }
-}
-
-public class SpecialList<V> : IList<V>
-{
-       public int Map<W> (W item)
-       {
-               return 2;
-       }
-}
-
-class X
-{
-       static int Main ()
-       {
-               IList<int> list = new List<int> ();
-               int result = list.Map ("Hello");
-               if (result != 1)
-                       return 1;
-
-               IList<int> list2 = new SpecialList<int> ();
-               int result2 = list2.Map ("World");
-               if (result2 != 2)
-                       return 2;
-
-               return 0;
-       }
-}