<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0761</ErrorName>
  <Examples>
    <string>// CS0761: Partial method declarations of `C.Foo&lt;T&gt;()' have inconsistent constraints for type parameter `T'
// Line: 8

partial class C
{
	partial void Foo&lt;U&gt; ();
	
	partial void Foo&lt;T&gt; () where T : class
	{
	}
}
</string>
    <string>// CS0761: Partial method declarations of `C.Foo&lt;U&gt;()' have inconsistent constraints for type parameter `U'
// Line: 8

partial class C
{
	partial void Foo&lt;T&gt; () where T : new ();
	
	partial void Foo&lt;U&gt; ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>