18 lines
223 B
C#
Raw Permalink Normal View History

// Compiler options: -doc:xml-070.xml
/// <summary>
/// Test base <see cref="ToString"/>
/// </summary>
interface I
{
}
class X
{
/// <returns>
/// <see cref="void"/>
/// </returns>
public static void Main ()
{
}
}