Switch to compiler-tester
[mono.git] / mcs / tests / gen-88.cs
diff --git a/mcs/tests/gen-88.cs b/mcs/tests/gen-88.cs
deleted file mode 100644 (file)
index c95c6b5..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-
-public struct KeyValuePair<K,V>
-{
-       public KeyValuePair (K k, V v)
-       { }
-
-       public KeyValuePair (K k)
-       { }
-}
-
-class X
-{
-       static void Main ()
-       {
-               new KeyValuePair<int,long> ();
-       }
-}