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: e086a68689d17f0f832ec32a71ac3a0d44418c1d (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
// Line: 7
// This is bug 55770

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

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