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
/
cs8171.cs
blob
36eae2c65a4d6b5cb957a2cb06dd1087fd929485
1
// CS8171: Cannot initialize a by-value variable `l' with a reference expression
2
// Line: 10
3
4
class
Test
5
{
6
int
field
;
7
8
void
Foo
()
9
{
10
int
l
=
ref
field
;
11
}
12
}