2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-iter-13.cs
blob6a16db89f52c76b0e4beb2b0f3226993621ee773
1 using System;
2 using System.Collections;
4 class Test
6 class Yp
8 public IEnumerable fail ()
10 return null;
14 static Yp YP = new Yp ();
16 public static void Main ()
21 public static IEnumerable syntax_error (object _Message, object _List)
24 yield break;
27 foreach (bool l1 in YP.fail ()) {
28 yield return false;