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
/
cs1605.cs
blob
4e172cae63ce4a2f3f6fbe32c98890f070c11d7a
1
// CS1605: Cannot pass `this' as a ref or out argument because it is read-only
2
// Line: 13
3
4
class
X
5
{
6
void
Test
(
out
X x
)
7
{
8
x
=
null
;
9
}
10
11
void
Run
()
12
{
13
Test
(
out this
);
14
}
15
}