2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-anon-49.cs
blob4ef3c9b44ff9119d195522d4cdf6415557fdfe5c
1 using System;
2 using System.Collections;
4 public class Test
6 public static void Main ()
8 foreach (object o in new Test ())
9 Console.WriteLine (o);
12 public IEnumerator GetEnumerator ()
14 foreach (int i in new ArrayList ())
15 yield return i;