Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0419-3.cs
1 // CS0419: Ambiguous reference in cref attribute `XmlDocument.Load'. Assuming `System.Xml.XmlDocument.Load(string)' but other overloads including `System.Xml.XmlDocument.Load(System.IO.Stream)' have also matched
2 // Line: 10
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
4 // 
5 // NOTE: this error message is dependent on the order of members, so feel free to modify the message if is going not to match.
6
7 using System.Xml;
8
9 /// <summary>
10 /// <see cref="XmlDocument.Load" />
11 /// </summary>
12 public class EntryPoint
13 {
14         static void Main () {
15         }
16 }