7 lines
120 B
C#
Raw Normal View History

// CS8052: Auto-implemented property `V.P' must have get accessor
// Line: 6
class V
{
public object P { set; } = 1;
}