Switch to compiler-tester
[mono.git] / mcs / tests / gen-157.cs
diff --git a/mcs/tests/gen-157.cs b/mcs/tests/gen-157.cs
deleted file mode 100644 (file)
index f314b01..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-interface a <t> { void x (); }
-
-interface b <t> : a <t> {}
-
-class kv <k,v> {} // type t
-
-interface c <k,v>: b <kv<k,v>>,  // b <t>
-                   a <kv<k,v>>    // a <t>
-{}
-
-class m <k,v> : c <k,v>,
-                b <kv<k,v>> // b <t>
-{
-        void a <kv <k,v>>.x () {} // a<t>.x ()
-}
-
-class X
-{
-       static void Main ()
-       { }
-}