summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1644-33.cs
blob: fff74c905048dec88114ba710f02bb1686038f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1644: Feature `asynchronous functions' cannot be used because it is not part of the C# 4.0 language specification
// Line: 9
// Compiler options: -langversion:4

using System;

class C
{
	public async void Foo ()
	{
	}
}