11 lines
109 B
C#
Raw Normal View History

// CS4001: Cannot await `int' expression
// Line: 8
class A
{
static async void Test ()
{
await 1;
}
}