<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0699</ErrorName>
  <Examples>
    <string>// CS0699: `I&lt;T&gt;': A constraint references nonexistent type parameter `U'
// Line: 8

partial interface I&lt;T&gt;
{
}

partial interface I&lt;T&gt; where U : class
{
}
</string>
    <string>// CS0699: `I.Test&lt;T&gt;()': A constraint references nonexistent type parameter `U'
// Line: 6

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