2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0082-4.cs
blob42c1cc38866a68b93be533f5c467c89e8ae856c8
1 // CS0082: A member `I.set_Item(int[], params int[])' is already reserved
2 // Line : 7
4 interface I
6 void set_Item (int[] a, params int[] b);
7 int[] this [params int[] ii] { get; }