summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1644-14.cs
blob: dc7aaf66e76ed9cd4f56a1a78e51304b3db5d836 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1644: Feature `implicitly typed local variable' cannot be used because it is not part of the C# 2.0 language specification
// Line:  9
// Compiler options: -langversion:ISO-2

class M
{
	public static void Main ()
	{
		var a = 1;
	}
}