<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1584</ErrorName>
  <Examples>
    <string>// CS1584: XML comment on `Test' has syntactically incorrect cref attribute `Mai()n'
// Line: 7
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

using System;
/// &lt;see cref="Mai()n" /&gt;
public class Test
{
}
</string>
    <string>// CS1584: XML comment on `Test' has syntactically incorrect cref attribute `Test[]'
// Line: 6
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

/// &lt;see cref="Test[]" /&gt;
public class Test
{
}
</string>
    <string>// CS1584: XML comment on `Test' has syntactically incorrect cref attribute `.'
// Line: 8
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

using System;

/// &lt;see cref="." /&gt;
public class Test
{
}
</string>
    <string>// CS1584: XML comment on `Test' has syntactically incorrect cref attribute `'
// Line: 8
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

using System;

/// &lt;see cref="" /&gt;
public class Test
{
}
</string>
    <string>// CS1584: XML comment on `Test' has syntactically incorrect cref attribute `IList(&lt;&gt;)'
// Line: 8
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

using System.Collections.Generic;

/// &lt;returns&gt;A &lt;see cref="IList({})" /&gt;.&lt;/returns&gt;
public class Test
{
}
</string>
    <string>// CS1584: XML comment on `Test' has syntactically incorrect cref attribute `operator foo(int,Test)'
// Line: 7
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

using System;
/// &lt;seealso cref="operator foo(int,Test)"/&gt;
public class Test
{
}
</string>
  </Examples>
</ErrorDocumentation>