Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0466-2.cs
blobe201cc572a9dc17c7684e84c16a097560516f343
1 // CS0466: `Base.I.this[params int[]].set': the explicit interface implementation cannot introduce the params modifier
2 // Line: 10
4 interface I
6 int this [int[] p] { set; }
8 class Base : I
10 int I.this [params int[] p] {
11 set {