2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0246-6.cs
1 // cs0246-6.cs: The type or namespace name 'XmlDocument' could not be found
2 // Line: 7
3 // This is bug 55770
4
5 using System;
6 using System.Xml;
7 using Document = XmlDocument;
8
9 public class Test {
10         public static void Main ()
11         {
12         }
13 }