* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs0111-18.cs
blob791434413041ee78ee03584120db69be120438da
1 // CS0111: `C.this[int[]]' is already defined. Rename this member or use different parameter types
2 // Line: 6
4 class C
6 bool this [int[] i] { get { return true; } }
7 bool this [params int[] i] { get { return false; } }