Switch to compiler-tester
[mono.git] / mcs / tests / gen-147.cs
diff --git a/mcs/tests/gen-147.cs b/mcs/tests/gen-147.cs
deleted file mode 100644 (file)
index e16a86a..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-namespace A
-{
-    interface IFoo
-    {
-        void Hello (IFoo foo);
-    }
-}
-
-namespace B
-{
-  partial class Test <T> : IDoo, A.IFoo where T : A.IFoo
-    { }
-}
-
-namespace B
-{
-    using A;
-
-    partial class Test <T> : Y, IFoo where T : IFoo
-    {
-        void IFoo.Hello (IFoo foo)
-        { }
-    }
-}
-
-interface IDoo { }
-
-class Y { }
-
-class X
-{
-    static void Main ()
-    { }
-}
-
-
-
-