blob: e201cc572a9dc17c7684e84c16a097560516f343 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0466: `Base.I.this[params int[]].set': the explicit interface implementation cannot introduce the params modifier
// Line: 10
interface I
{
int this [int[] p] { set; }
}
class Base : I
{
int I.this [params int[] p] {
set {
}
}
}
|