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
/
cs8154.cs
blob
ed98513e65eb02107bcd360e3f73614df821a139
1
// CS8154: The body of `TestClass.TestFunction()' cannot be an iterator block because the method returns by reference
2
// Line: 10
3
4
class
TestClass
5
{
6
int
x
;
7
8
ref int
TestFunction
()
9
{
10
yield return
x
;
11
}
12
}