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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs1104.cs
blob
4a0f5ed3e27eb3b962ce387717647181454b2182
1
// CS1104: The parameter modifiers `this' and `params' cannot be used altogether
2
// Line: 6
3
4
static class
S
5
{
6
static void
Foo
(
params this int
[]
o
)
7
{
8
}
9
}