[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs4009.cs
1 // CS4009: `C.Main()': an entry point cannot be async method
2 // Line: 8
3
4 class C
5 {
6         public static async void Main ()
7         {
8                 await Call ();
9         }
10         
11         static async void Call ()
12         {
13         }
14 }