<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1580</ErrorName>
  <Examples>
    <string>// cs1580-2.cs: Invalid type for parameter `1' in XML comment cref attribute `Method(x,y)'
// Line: 7
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

using System;
/// &lt;see cref="Method(x,y)"/&gt;
public class Test
{
}
</string>
    <string>// cs1580.cs: Invalid type for parameter `1' in XML comment cref attribute `Foo(x)'
// Line: 7
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

using System;
/// &lt;seealso cref="Foo(x)"/&gt;
public class Test
{
	int Foo ()
	{
		return 0;
	}
}
</string>
  </Examples>
</ErrorDocumentation>