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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0466-2.cs
blob
e201cc572a9dc17c7684e84c16a097560516f343
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
}