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

test-913.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e35eaff1795677c2a840fc31776874182a07b122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace N 
{
	using X = A.B;

	class A
	{
		public class B {}

		public class C : X {}

		public static void Main ()
		{
			new C ();
		}
	}
}