Switch to compiler-tester
[mono.git] / mcs / tests / gen-32.cs
diff --git a/mcs/tests/gen-32.cs b/mcs/tests/gen-32.cs
deleted file mode 100644 (file)
index 1b554a5..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-// Generic interfaces
-
-interface Foo<S>
-{
-       void Hello (S s);
-}
-
-interface Bar<T,U> : Foo<U>
-{
-       void Test (T t, U u);
-}
-
-class X
-{
-       static void Test (Bar<int,string> bar)
-       {
-               bar.Hello ("Test");
-               bar.Test (7, "Hello");
-       }
-
-       static void Main ()
-       { }
-}