[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs8080.cs
blob001792cee53248ef040b3da05bf063c12fc27c0c
1 // CS8080: `C.P': Auto-implemented properties must override all accessors of the overridden property
2 // Line: 11
4 abstract class B
6 public virtual int P { get; private set; }
9 class C : B
11 public override int P { get; }