Switch to compiler-tester
[mono.git] / mcs / tests / 2test-4.cs
diff --git a/mcs/tests/2test-4.cs b/mcs/tests/2test-4.cs
deleted file mode 100644 (file)
index 0022304..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Compiler options: -langversion:default
-
-using System;
-using System.Collections;
-
-class X {
-       static IEnumerable GetRange (int start, int end)
-       {
-               for (int i = start; i < end; i++)
-                       yield return i;
-       }
-
-       static void Main ()
-       {
-               Console.WriteLine ("GetRange 10..20");
-                                  
-               foreach (int i in GetRange (10, 20)){
-                       Console.WriteLine ("i=" + i);
-               }
-       }
-}