<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0516</ErrorName>
  <Examples>
    <string>// CS0516: Constructor `A&lt;T&gt;.A(T)' cannot call itself
// Line: 7

public class A&lt;T&gt;
{
	public A (T i)
		: this (i)
	{
	}
}
</string>
    <string>// CS0516: Constructor `Sample.Sample()' cannot call itself
// Line: 6

class Sample {
	public Sample ()
		: this ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>