<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0442</ErrorName>
  <Examples>
    <string>// CS0442: `C.Prop.get': abstract properties cannot have private accessors
// Line: 7

abstract class C {
    protected abstract int Prop
    {
	private get;
	set;
    }
}

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