[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs4005.cs
1 // CS4005: Async methods cannot have unsafe parameters
2 // Line: 7
3 // Compiler options: -unsafe
4
5 class C
6 {
7         public unsafe async void Test (int* arg)
8         {
9         }
10 }