[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }