1 // CS4014: The statement is not awaited and execution of current method continues before the call is completed. Consider using `await' operator or calling `Wait' method
3 // Compiler options: -warnaserror
6 using System
.Threading
.Tasks
;
10 public static async Task
<T
> Test
<T
> ()
12 return await Task
.FromResult (default (T
));