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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1101.cs
blob
239387b37d2edea031d748241ffd79835108be6e
1
// CS1101: The parameter modifiers `this' and `ref' cannot be used altogether
2
// Line: 6
3
4
static class
S
5
{
6
static void
Foo
(
ref this string
s
)
7
{
8
}
9
}