imported everything from my branch (which is slightly harmless).
[mono.git] / mcs / errors / cs0111-2.cs
1 // cs0111-2.cs: Type `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 }