Switch to compiler-tester
[mono.git] / mcs / tests / gen-87.cs
diff --git a/mcs/tests/gen-87.cs b/mcs/tests/gen-87.cs
deleted file mode 100644 (file)
index ab25304..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-namespace C5
-{
-       public class HashedArrayList<T>
-       {
-               public void Test ()
-               {
-                       new HashSet <KeyValuePair<T,int>> (new KeyValuePairHasher<T,int> ());
-               }
-       }
-
-       public class HashSet<T>
-       {
-               public HashSet (IHasher<T> itemhasher)
-               { }
-       }
-
-       public interface IHasher<T>
-       {
-       }
-
-       public struct KeyValuePair<K,V>
-       {
-       }
-
-       public sealed class KeyValuePairHasher<K,V>: IHasher<KeyValuePair<K,V>>
-       {
-       }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}