[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0029-31.cs
blobe6d6afa2c2db4ffd5f3d0f3cb46f4bd68b5ed9da
1 // CS0029: Cannot implicitly convert type `void' to `int'
2 // Line: 11
4 using System;
5 using System.Threading.Tasks;
7 class C
9 public async Task<int> Test ()
11 return await Call ();
14 Task Call ()
16 return null;