Switch to compiler-tester
[mono.git] / mcs / tests / gen-121.cs
diff --git a/mcs/tests/gen-121.cs b/mcs/tests/gen-121.cs
deleted file mode 100644 (file)
index 4357196..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-public class B<T>
-{
-       public int Add (T obj)
-       {
-               return -1;
-       }
-
-       public void AddRange (object o)
-       {
-               T obj = (T) o;
-               Add (obj);
-       }
-}
-
-public interface IA
-{
-}
-
-public class A : IA
-{
-}
-
-public class Test
-{
-       public static void Main ()
-       {
-               B<IA> aux = new B<IA> ();
-               aux.AddRange (new A ());
-       }               
-}