Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs1574-4.cs
1 // CS1574: XML comment on `Test' has cref attribute `System.Xml.XmlDocument' that could not be resolved
2 // Line: 9
3 // Compiler options: -doc:dummy.xml -warnaserror -noconfig
4
5 using System;
6
7 /// <seealso cref="System.Xml.XmlDocument"/>
8 /// with /noconfig, it cannot be resolved.
9 public class Test
10 {
11 }