<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1735</ErrorName>
  <Examples>
    <string>// CS1735: XML comment on `S&lt;T1,T2&gt;' has a typeparamref name `T' that could not be resolved
// Line: 9
// Compiler options: -doc:dummy.xml /warnaserror /warn:2

/// &lt;summary&gt;
///  Test
///  &lt;typeparamref name="T" /&gt;
/// &lt;/summary&gt;
public struct S&lt;T1, T2&gt;
{
}
</string>
    <string>// CS1735: XML comment on `S.Test&lt;U&gt;()' has a typeparamref name `T' that could not be resolved
// Line: 9
// Compiler options: -doc:dummy.xml /warnaserror /warn:2

struct S
{
	/// &lt;summary&gt;
	///  Test
	///  &lt;typeparamref name="T" /&gt;
	/// &lt;/summary&gt;
	public void Test&lt;U&gt; ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>