* cs0208-7.cs, cs0208-8.cs: New tests. Verified on CSC.
[mono.git] / mcs / errors / cs0115-2.cs
1 // cs0115.cs: 'X.this[int]': no suitable method found to override
2 // Line: 5
3
4 class X {
5         public override long this [int i] {
6             set { }
7         }
8 }