summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1644-19.cs
blob: fe4e494dd375f2c7fd5d60a6c2e82e5578d0d7c8 (plain)
1
2
3
4
5
6
7
8
// CS1644: Feature `auto-implemented properties' cannot be used because it is not part of the C# 2.0 language specification
// Line: 7
// Compiler options: -langversion:ISO-2

class P
{
	public string Name { get; set; }
}