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
/
cs1102.cs
blob
81c7c70cfe92b8524fe4506a3136f94314c3b669
1
// CS1102: The parameter modifiers `this' and `out' cannot be used altogether
2
// Line: 6
3
4
static class
S
5
{
6
static void
Foo
(
this out string
s
)
7
{
8
}
9
}