Switch to compiler-tester
[mono.git] / mcs / tests / mtest-6-exe.cs
diff --git a/mcs/tests/mtest-6-exe.cs b/mcs/tests/mtest-6-exe.cs
deleted file mode 100644 (file)
index 11c95af..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Compiler options: -r:mtest-6-dll.dll
-
-using System;
-public class MyTestExtended : MyTestAbstract
-{
-       public MyTestExtended() : base()
-       {
-       }
-
-       protected override string GetName() { return "foo"; }
-       public static void Main(string[] args)
-       {
-               Console.WriteLine("Calling PrintName");
-               MyTestExtended test = new MyTestExtended();
-               test.PrintName();
-               Console.WriteLine("Out of PrintName");
-       }
-       
-}