summaryrefslogtreecommitdiff
path: root/mcs/errors/cs4001-2.cs
blob: 08161771e67f3570d746e3b627e1fc665f01ff43 (plain)
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;
	}
}