Switch to compiler-tester
[mono.git] / mcs / tests / gen-77.cs
diff --git a/mcs/tests/gen-77.cs b/mcs/tests/gen-77.cs
deleted file mode 100644 (file)
index 4c7da6c..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Compiler options: -r:System
-using System;
-using System.Collections.Generic;
-
-public class X {
-       public static void Main(string[] args)
-       {
-               Collection<int> list = new Collection<int>();
-               list.Add (3);
-               foreach (int i in list) {
-                       Console.WriteLine(i);
-               }
-       }
-}