9 lines
176 B
C#
9 lines
176 B
C#
|
// 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 { }
|
||
|
}
|
||
|
}
|