<?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>CS0568</ErrorName>
  <Examples>
    <string>// cs0568.cs: Structs cannot contain explicit parameterless constructors
// Line: 5
struct A {
	int a;
	A () { a = 1; }
}

class D {
	static void Main ()
	{
		A [] a = new A [10];

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