<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0545</ErrorName>
  <Examples>
    <string>// CS0545: `B.Prop': cannot override because `A.Prop' does not have accessible get accessor
// Line: 13

public class A
{
	public virtual string Prop {
		set; private get;
	}  
}
 
public class B : A
{
	sealed override public string Prop {
		set { }
	}   
}</string>
    <string>// CS0545: `DerivedClass.Value.get': cannot override because `BaseClass.Value' does not have an overridable get accessor
// Line: 9

abstract class BaseClass {
        protected abstract int Value { set; }
}

class DerivedClass: BaseClass {
        protected override int Value { get {} set {} }
}

</string>
  </Examples>
</ErrorDocumentation>