repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1104.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
}