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

test-202.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3efb5fde6eca8e79ca8a9824ea022f0f494c606f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using X;
namespace X
{
	public class X
	{ }
}

namespace A.B.C
{
	public class D
	{ }
}

class Test
{
	public static int Main ()
	{
		A.B.C.D d = new A.B.C.D ();
		X.X x = new X.X ();
		return 0;
	}
}