Switch to compiler-tester
[mono.git] / mcs / tests / 2test-a3.cs
diff --git a/mcs/tests/2test-a3.cs b/mcs/tests/2test-a3.cs
deleted file mode 100644 (file)
index 400059c..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-delegate void S ();
-using System;
-
-class X {
-       static int Main ()
-       {
-               int a = 1;
-               Console.WriteLine ("A is = " + a);
-               int c = a;
-               Console.WriteLine (c);
-               if (a != 1){
-                       return 1;
-               }
-               
-               S b = delegate {
-                       if (a != 1)
-                               Environment.Exit (1);
-                       Console.WriteLine ("in Delegate");
-                       a = 2;
-                       if (a != 2)
-                               Environment.Exit (2);
-                       Console.WriteLine ("Inside = " + a);
-                       a = 3;
-                       Console.WriteLine ("After = " + a);
-               };
-               if (a != 1)
-                       return 3;
-               b ();
-               if (a != 3)
-                       return 4;
-               Console.WriteLine ("Back, got " + a);
-
-               return 0;
-       }
-}