2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0111-2.cs
blob95882483faf9dbfa67e0a026af0c15134258d2cb
1 // cs0111-2.cs: `ISample.set_Item(int, int)' is already defined. Rename this member or use different parameter types
2 // Line: 6
4 public interface ISample {
5 void set_Item (int a, int b);
6 int this[int i] { set; }