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

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

namespace TT
{
	namespace A
	{
		using GG = System.DateTime;
		
		namespace X.Y
		{
			class X
			{
				public static void Main ()
				{
					System.DateTime dt = new GG ();
				}
			}
		}
	}
}