[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0246-6.cs
blobb50535d943e5ccc05917b6e0dd9ad089b0109f60
1 // CS0246: The type or namespace name `XmlDocument' could not be found. Consider using fully qualified name `System.Xml.XmlDocument'
2 // Line: 6
4 using System;
5 using System.Xml;
6 using Document = XmlDocument;
8 public class Test {
9 public static void Main ()