Bump API snapshot submodule
[mono.git] / mcs / errors / cs4033.cs
1 // CS4033: The `await' operator can only be used when its containing method is marked with the `async' modifier
2 // Line: 11
3
4 using System.Threading.Tasks;
5
6 class Tester
7 {
8         void Test ()
9         {
10                 Task<int> x = null;
11                 var a = await x;
12         }
13 }