<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8091</ErrorName>
  <Examples>
    <string>// CS8091: `Test.Test()': Contructors cannot be extern and have a constructor initializer
// Line: 16

public class A
{
    public A (int arg)
    {
    }
}

public class Test : A
{
	int prop = 1;

	public extern Test ()
		: base (1);
}</string>
  </Examples>
</ErrorDocumentation>