<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0460</ErrorName>
  <Examples>
    <string>// CS0460: `C.Test&lt;T&gt;()': Cannot specify constraints for overrides and explicit interface implementation methods
// Line: 11

abstract class A
{
	protected abstract int Test&lt;T&gt;() where T : class;
}

class C : A
{
	protected override int Test&lt;T&gt;() where T : new()
	{
	}
}
</string>
    <string>// CS0460: `C.I.Test&lt;C&gt;()': Cannot specify constraints for overrides and explicit interface implementation methods
// Line: 11

interface I
{
	void Test&lt;T&gt;() where T : new ();
}

class C : I
{
	void I.Test&lt;C&gt;() where C : class
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>