blob: 29ebf4216a8eee770bbeb5961dba18244eec0b0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1574: XML comment on `Test' has cref attribute `System.Xml.XmlDocument' that could not be resolved
// Line: 9
// Compiler options: -doc:dummy.xml -warnaserror -noconfig
using System;
/// <seealso cref="System.Xml.XmlDocument"/>
/// with /noconfig, it cannot be resolved.
public class Test
{
}
|