summaryrefslogtreecommitdiff
path: root/mcs/errors/cs8050.cs
blob: 2f4b88bfc2a6dc0f625b3e15a36750d59ff6d2f3 (plain)
1
2
3
4
5
6
7
// CS8050: `C.P': Only auto-implemented properties can have initializers
// Line: 6

abstract class C
{
	public abstract int P { get; } = 4;
}