[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0029-32.cs
1 // CS0029: Cannot implicitly convert type `string' to `int'
2 // Line: 11
3
4 using System;
5 using System.Threading.Tasks;
6
7 class C
8 {
9         public async Task<int> Test ()
10         {
11                 return await Call ();
12         }
13         
14         Task<string> Call ()
15         {
16                 return null;
17         }
18 }