2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0111-2.cs
1 // cs0111.cs: Class 'ISample' already defines a member called 'set_Item' with the same parameter types
2 // Line: 6
3
4 public interface ISample {
5         void set_Item (int a, int b);
6         int this[int i] { set; }
7 }