Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0620-2.cs
1 // CS0620: `Indexer.this[int]': indexer return type cannot be `void'
2 // Line: 5
3
4 interface Indexer {
5         void this [int i] { set; }
6 }