remove debug writelines
[mcs.git] / errors / cs0202.cs
blob24c3b262a05e5c98c243f4a580b581c45ef67550
1 // cs0202.cs: foreach statement requires that the return type `Foo.E[]' of `Foo.P.GetEnumerator()' must have a suitable public MoveNext method and public Current property
2 // Line: 18
4 public class Foo
6 public class E {}
8 public class P
10 public E[] GetEnumerator ()
12 return null;
16 public static void Main ()
18 P o = new P ();
19 foreach (P p in o)