Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0246-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac9c375adbfc4918da4c8b204666cf315421ded2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0246-6.cs: The type or namespace name `XmlDocument' could not be found. Are you missing a using directive or an assembly reference?
// Line: 7
// This is bug 55770

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

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