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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1622.cs
blob
b063b681b0e804b4740c95398997b93b0c57d62b
1
// CS1622: Cannot return a value from iterators. Use the yield return statement to return a value, or yield break to end the iteration
2
// Line: 11
3
using
System
.
Collections
;
4
5
class
X
{
6
IEnumerator
MyEnumerator
(
int
a
)
7
{
8
if
(
a
==
0
)
9
yield return
1
;
10
else
11
return null
;
12
}
13
14
static void
Main
()
15
{
16
}
17
}