[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0106-10.cs
1 // CS0106: The modifier `async' is not valid for this item
2 // Line: 6
3
4 interface I
5 {
6         async void M ();
7 }