<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1584</ErrorName>
  <Examples>
    <string>// cs1584-2.cs: 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-3.cs: 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-4.cs: 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.cs: 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>