repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
gtest-iter-18.cs
blob
7e40f4fbdd034700473924ba10185086f9355a72
1
using
System
.
Collections
.
Generic
;
2
3
public class
c
4
{
5
public static
IEnumerable
<
char
>
func
()
6
{
7
yield return
'0'
;
8
yield break
;
9
foreach
(
char
c
in
"1"
) {
10
yield return
c
;
11
}
12
}
13
14
public static void
Main
()
15
{
16
foreach
(
char
a
in
func
()) {
17
}
18
}
19
}