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

cs0104.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7192c8ab9cfa837a458dd79d46450b1287f538c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// cs0104.cs: Ambiguous type reference
// Line: 16
namespace A {
	class X {
	}
}

namespace B {
	class X {
	}
}

namespace C {
	using A;
	using B;
	class D : X {

	static void Main () {}
	}
}