summaryrefslogtreecommitdiff
path: root/mcs/errors/cs4001.cs
blob: cd5f6c237338c85d9f4d7031f7c10a8fc5da9d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS4001: Cannot await `void' expression
// Line: 10

using System;

class A
{
	static async void Test ()
	{
		await Console.WriteLine ("await");
	}
}