Switch to compiler-tester
[mono.git] / mcs / tests / mtest-8-exe.cs
diff --git a/mcs/tests/mtest-8-exe.cs b/mcs/tests/mtest-8-exe.cs
deleted file mode 100644 (file)
index 6e1c35f..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// Compiler options: -r:mtest-8-dll.dll
-
-using System;
-using blah;
-
-namespace blah2
-{
-
-public class MyClass
-{
-    public event MyFunnyDelegate DoSomething;
-
-    public void DoSomethingFunny()
-    {
-        if (DoSomething != null) DoSomething(this, "hello there", "my friend");
-    }
-
-       public static void Main(string[] args)
-       {
-               MyClass mc = new MyClass();
-               mc.DoSomethingFunny();
-
-       }
-}
-
-}