[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0246-6.cs
1 // CS0246: The type or namespace name `XmlDocument' could not be found. Consider using fully qualified name `System.Xml.XmlDocument'
2 // Line: 6
3
4 using System;
5 using System.Xml;
6 using Document = XmlDocument;
7
8 public class Test {
9         public static void Main ()
10         {
11         }
12 }