Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

16 lines
263 B
C#

// CS0546: `B.Prop': cannot override because `A.Prop' does not have accessible set accessor
// Line: 13
public class A
{
public virtual string Prop {
get; private set;
}
}
public class B : A
{
sealed override public string Prop {
get { return ""; }
}
}