19 lines
237 B
C#
Raw Normal View History

// CS4011: The awaiter type `int' must have suitable IsCompleted and GetResult members
// Line: 16
static class S
{
public static int GetAwaiter (this int i)
{
return 1;
}
}
class A
{
static async void Test ()
{
await 9;
}
}