a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
229 B
C#
22 lines
229 B
C#
using System;
|
|
using System.Collections;
|
|
|
|
class X
|
|
{
|
|
public static int Main ()
|
|
{
|
|
foreach (var i in GetAll ()) {
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static IEnumerable GetAll ()
|
|
{
|
|
yield return 1;
|
|
if (false) {
|
|
yield return 2;
|
|
}
|
|
}
|
|
}
|