blob: 6b489e84488a57c0a88aa3a44c74adfa79ae1a9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System.Collections;
using System.Collections.Generic;
class C
{
public static void Main ()
{
}
IEnumerable<int> Iter_1()
{
yield return 1;
}
IEnumerable Iter_2()
{
yield break;
}
}
|