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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-debug-13.cs
blob
6b489e84488a57c0a88aa3a44c74adfa79ae1a9d
1
using
System
.
Collections
;
2
using
System
.
Collections
.
Generic
;
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
9
}
10
11
IEnumerable
<
int
>
Iter_1
()
12
{
13
yield return
1
;
14
}
15
16
IEnumerable
Iter_2
()
17
{
18
yield break
;
19
}
20
}