2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0111-14.cs
blob69bc54c5d97b45d717c4f6424e86db6560ec7192
1 // cs0111-14.cs: `Test.set_Item(int, string)' is already defined. Rename this member or use different parameter types
2 // Line : 6
4 public class Test
6 public string this [int i] {
7 get { return ""; }
9 public void set_Item (int i, string s) { }