repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-12-09 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-iter-12.cs
blob
88e102ed0894548504eb037559274d8b339bf2bb
1
class
X
{
2
System
.
Collections
.
IEnumerable
a
()
3
{
4
lock
(
this
){
5
yield return
"a"
;
6
yield return
"b"
;
7
}
8
}
9
10
static void
Main
() {}
11
}