Switch to compiler-tester
[mono.git] / mcs / tests / 2test-13.cs
diff --git a/mcs/tests/2test-13.cs b/mcs/tests/2test-13.cs
deleted file mode 100644 (file)
index 3158d8e..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-// Compiler options: -langversion:default
-
-namespace A
-{
-       interface IFoo
-       {
-               void Hello (IFoo foo);
-       }
-}
-
-namespace B
-{
-       partial class Test
-       { }
-}
-
-namespace B
-{
-       using A;
-
-       partial class Test : IFoo
-       {
-               void IFoo.Hello (IFoo foo)
-               { }
-       }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}