[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0620.cs
1 // CS0620: `PropertyClass.this[int]': indexer return type cannot be `void'
2 // Line: 5
3
4 class PropertyClass {
5         public void this [int i] {
6                 set {}
7         }
8 }