summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0115-2.cs
blob: a7f16152a9a7a1a1455efdc1c95a61ea0cf486b1 (plain)
1
2
3
4
5
6
7
8
// CS0115: `X.this[int]' is marked as an override but no suitable indexer found to override
// Line: 5

class X {
	public override long this [int i] {
            set { }
	}
}