blob: 001792cee53248ef040b3da05bf063c12fc27c0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS8080: `C.P': Auto-implemented properties must override all accessors of the overridden property
// Line: 11
abstract class B
{
public virtual int P { get; private set; }
}
class C : B
{
public override int P { get; }
}
|