summaryrefslogtreecommitdiff
path: root/mcs/errors/cs4014-4.cs
blob: c6bbf9d847cb1c3e54e3be746764fd172369fbb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS4014: The statement is not awaited and execution of current method continues before the call is completed. Consider using `await' operator
// Line: 12
// Compiler options: -warnaserror

using System;
using System.Threading.Tasks;

class C
{
	static async Task<int> TestAsync ()
	{
		new Task (() => {});
		return await Task.FromResult (2);
	}
}