9 lines
176 B
C#
Raw Permalink Normal View History

// 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 { }
}
}