summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0082-3.cs
blob: 79e09cdeccecb0c7ffda621d19a29b6335d434bf (plain)
1
2
3
4
5
6
7
8
9
10
// CS0082: A member `Test.set_Item(int, string)' is already reserved
// Line : 6

public class Test
{
	public string this [int i] {
		get { return ""; }
	}
	public void set_Item (int i, string s) { }
}