Switch to compiler-tester
[mono.git] / mcs / tests / gen-98-exe.cs
diff --git a/mcs/tests/gen-98-exe.cs b/mcs/tests/gen-98-exe.cs
deleted file mode 100644 (file)
index 7bd8902..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Compiler options: /r:gen-98-dll.dll
-public class Foo : IFoo
-{
-       void IFoo.Test<X> ()
-       { }
-
-       void IFoo.Test<Y,Z> ()
-       { }
-}
-
-public class Bar<X,Y,Z> : IBar<X>, IBar<Y,Z>
-{
-       void IBar<X>.Test ()
-       { }
-
-       void IBar<Y,Z>.Test ()
-       { }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}