[System.Runtime.Remoting] Adds System.Core reference for tests
[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 }