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

test-214.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84352b447f36bd121d1e356cb909b8b5d2dddfa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using T1 = N1.C1;

namespace N2
{
	class Test : T1
	{
		public static int Main()
		{
			// Compilation-only test.
			Foo ();
			return 0;
		}
	}
}

namespace N1
{
	public class C1
	{        
		public static void Foo ()
		{ }
	}
}