2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / errors / cs0111-14.cs
1 // cs111.cs : Class 'Test' already defines a member called 'set_Item' with the same parameter types
2 // Line : 6
3
4 public class Test
5 {
6         public string this [int i] {
7                 get { return ""; }
8         }
9         public void set_Item (int i, string s) { }
10 }