Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

32 lines
356 B
C#

using System;
using System.Collections;
class Test
{
class Yp
{
public IEnumerable fail ()
{
return null;
}
}
static Yp YP = new Yp ();
public static void Main ()
{
}
public static IEnumerable syntax_error (object _Message, object _List)
{
{
yield break;
}
foreach (bool l1 in YP.fail ()) {
yield return false;
}
}
}