New test.
authorMartin Baulig <martin@novell.com>
Wed, 4 Oct 2006 20:43:01 +0000 (20:43 -0000)
committerMartin Baulig <martin@novell.com>
Wed, 4 Oct 2006 20:43:01 +0000 (20:43 -0000)
svn path=/branches/martin/anonymous-methods/work/; revision=66246

mcs/work/test-martin-15.cs [deleted file]

diff --git a/mcs/work/test-martin-15.cs b/mcs/work/test-martin-15.cs
deleted file mode 100644 (file)
index a3e7385..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections;
-
-public class Test
-{
-        public static void Main ()
-        {
-                foreach (object o in new Test ())
-                        Console.WriteLine (o);
-        }
-
-        public IEnumerator GetEnumerator ()
-        {
-               int i = 2;
-               yield return 3;
-        }
-}