[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs1998.cs
bloba61ced73dfdd2ae36ff4f778f64aea1da43ad4ea
1 // CS1998: Async block lacks `await' operator and will run synchronously
2 // Line: 10
3 // Compiler options: -warnaserror
5 using System;
6 using System.Threading.Tasks;
8 class C
10 static async Task<int> Method ()
12 return 0;
15 public static void Main ()