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-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs1627.cs
blob
0d951588686c67d4d18eae5b4bf29df22502a5f9
1
// cs01627.cs: Expression expected after yield return
2
// Line: 10
3
4
using
System
.
Collections
;
5
6
class
C
:
IEnumerable
7
{
8
public
IEnumerator
GetEnumerator
()
9
{
10
yield return
;
11
}
12
}