<?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>CS0143</ErrorName>
  <Examples>
    <string>// cs0143.cs: The type `int' has no constructors defined
// Line: 8

class C
{
	static void Main ()
	{
		int i = new int(1);
	}
}

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