Switch to compiler-tester
[mono.git] / mcs / tests / gen-80.cs
diff --git a/mcs/tests/gen-80.cs b/mcs/tests/gen-80.cs
deleted file mode 100644 (file)
index 57931e1..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-public interface IFoo<X>
-{ }
-
-public class Test
-{
-       public void Hello<T> (IFoo<T> foo)
-       {
-               InsertAll (foo);
-       }
-
-       public void InsertAll<U> (IFoo<U> foo)
-       { }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}