a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
9 lines
247 B
C#
9 lines
247 B
C#
// CS0840: `Test.Property.get' must have a body because it is not marked abstract or extern. The property can be automatically implemented when you define both accessors
|
|
// Line: 7
|
|
|
|
|
|
public abstract class Test
|
|
{
|
|
public string Property { get; }
|
|
}
|