* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / cs0111-15.cs
1 // cs0111-15.cs: `I.set_Item(int[], params int[])' is already defined. Rename this member or use different parameter types
2 // Line : 7
3
4 interface I
5 {
6         void set_Item (int[] a, params int[] b);
7         int[] this [params int[] ii] { get; }
8 }