New test.
[mono.git] / mcs / errors / cs0620-2.cs
1 // cs0620.cs: Indexers cannot have void type
2 // Line: 5
3
4 interface Indexer {
5         void this [int i] { set; }
6 }