<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0271</ErrorName>
  <Examples>
    <string>// cs0271.cs: The property or indexer `P.Prop' cannot be used in this context because the get accessor is inaccessible
// Line: 19

class P
{
    public static int Prop
    {
	private get {
	    return 4;
	}
	set {}
    }
}

public class C
{
    public static int Main ()
    {
	return P.Prop;
    }
}</string>
  </Examples>
</ErrorDocumentation>