summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-6.cs
blob: b50535d943e5ccc05917b6e0dd9ad089b0109f60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0246: The type or namespace name `XmlDocument' could not be found. Consider using fully qualified name `System.Xml.XmlDocument'
// Line: 6

using System;
using System.Xml;
using Document = XmlDocument;

public class Test {
	public static void Main ()
	{
	}
}