Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0115-2.cs
1 // CS0115: `X.this[int]' is marked as an override but no suitable indexer found to override
2 // Line: 5
3
4 class X {
5         public override long this [int i] {
6             set { }
7         }
8 }