Switch to compiler-tester
[mono.git] / mcs / tests / gen-69.cs
diff --git a/mcs/tests/gen-69.cs b/mcs/tests/gen-69.cs
deleted file mode 100644 (file)
index 3305f2e..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-public interface IFoo
-{
-       int GetHashCode ();
-}
-
-public interface IFoo<T>
-{
-       int GetHashCode ();
-}
-
-public class Test<T>
-{
-       public int Foo (IFoo<T> foo)
-       {
-               return foo.GetHashCode ();
-       }
-
-       public int Foo (IFoo foo)
-       {
-               return foo.GetHashCode ();
-       }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}