Switch to compiler-tester
[mono.git] / mcs / tests / 2test-1.cs
diff --git a/mcs/tests/2test-1.cs b/mcs/tests/2test-1.cs
deleted file mode 100644 (file)
index 122bd0c..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.Collections;
-
-class X {
-       static IEnumerator GetIt ()
-       {
-               Console.WriteLine ("test");
-#if __V2__
-               yield 1;
-               yield 2;
-               yield 3;
-#else
-               return null;
-#endif
-       }
-       
-       static void Main ()
-       {
-               IEnumerator e = GetIt ();
-               while (e.MoveNext ()){
-                       Console.WriteLine ("Value=" + e.Current);
-               }
-               
-       }
-}