8 lines
167 B
C#
Raw Normal View History

// CS8051: Auto-implemented property `Test.Property' must have set accessor or initializer
// Line: 6
public abstract class Test
{
public string Property { get; }
}