7 lines
142 B
C#
7 lines
142 B
C#
|
// CS8050: `C.P': Only auto-implemented properties can have initializers
|
||
|
// Line: 6
|
||
|
|
||
|
abstract class C
|
||
|
{
|
||
|
public abstract int P { get; } = 4;
|
||
|
}
|