1 2 3 4 5 6 7 8 9 10
// CS4001: Cannot await `int' expression // Line: 8 class A { static async void Test () { await 1; } }