Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0082-3.cs
1 // CS0082: A member `Test.set_Item(int, string)' is already reserved
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 }