a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
32 lines
356 B
C#
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;
|
|
}
|
|
}
|
|
}
|