summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0542-5.cs
blob: 9c5e044444e126343952d37ca5b3309655fb785f (plain)
1
2
3
4
5
6
7
8
9
10
// CS0542: `Item.this[int]': member names cannot be the same as their enclosing type
// Line: 6

class Item
{
	public int this[int i] {
		set {}
	}
}