2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0466-2.cs
blob3326ec6f147e378b0f36d56a2d7a0124221a7f25
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 {