<?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>CS0666</ErrorName>
  <Details>
    <Summary>
      <p>
			It is not permissable to have a protected member 
			inside a struct.
		</p>
    </Summary>
    <Details>
      <p>
			As structs are implicitly declared as <b>sealed</b> they
			can not have protected members. Usually you can fix this
			error by changing the scope of the variable.
		</p>
    </Details>
  </Details>
  <Examples>
    <string>// cs0666.cs: `X.A': new protected member declared in struct
// Line: 4
struct X {
	protected int A;

	static void Main ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>