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

class A
{
	void Foo ()
	{
		var v = new { X = "Bar" };
	}
}