[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0029-31.cs
1 // CS0029: Cannot implicitly convert type `void' 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 Call ()
15         {
16                 return null;
17         }
18 }