summaryrefslogtreecommitdiff
path: root/mcs/errors/cs8051.cs
blob: 1bd716c4b82baecf2e5b98f5c3572aaa2b050535 (plain)
1
2
3
4
5
6
7
// CS8051: Auto-implemented property `V.P' must have get accessor
// Line: 6

class V
{
	public object P { set; } = 1;
}