Switch to compiler-tester
[mono.git] / mcs / tests / a-foreach.cs
diff --git a/mcs/tests/a-foreach.cs b/mcs/tests/a-foreach.cs
deleted file mode 100644 (file)
index 678c0b5..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-        
-delegate void A ();
-
-class DelegateTest {
-       static void Main (string[] argv)
-       {
-               Console.WriteLine ("Test");
-
-               foreach (string arg in argv) {
-                       Console.WriteLine ("OUT: {0}", arg);
-                       A a = delegate {
-                               Console.WriteLine ("arg: {0}", arg);
-                       };
-                       a ();
-               }
-       }
-}
-