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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0466-2.cs
blob
3326ec6f147e378b0f36d56a2d7a0124221a7f25
1
// cs0466: `Base.I.this[params int[]].set': the explicit interface implementation cannot introduce the params modifier
2
// Line: 10
3
4
interface
I
5
{
6
int this
[
int
[]
p
]
{ set; }
7
}
8
class
Base
:
I
9
{
10
int
I
.
this
[
params int
[]
p
] {
11
set
{
12
}
13
}
14
}