[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1669.cs
1 // CS1669: __arglist is not valid in this context
2 // Line: 6
3
4 public class E
5 {
6     int this [__arglist] { get { return 1; } }
7 }