Switch to compiler-tester
[mono.git] / mcs / tests / gen-108.cs
diff --git a/mcs/tests/gen-108.cs b/mcs/tests/gen-108.cs
deleted file mode 100644 (file)
index a7546e5..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-public class Test<T>
-{
-       protected T item;
-
-       public Test (T item)
-       {
-               this.item = item;
-       }
-
-       public IEnumerator<T> GetEnumerator()
-       {
-               yield return item;
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-               Test<int> test = new Test<int> (3);
-               foreach (int a in test)
-                       ;
-       }
-}