Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs4009.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f628c3648db360d55a47a7649873b2aafb7c24ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS4009: `C.Main()': an entry point cannot be async method
// Line: 8

class C
{
	public static async void Main ()
	{
		await Call ();
	}
	
	static async void Call ()
	{
	}
}