Merge pull request #5567 from kumpera/fix_59334
[mono.git] / mcs / errors / cs0466-2.cs
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 }