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

test-260.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84e770046bc069af60c97708b6f62727c5e90ccf (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
26
27
using x;
using y;
using Test = x.Test;

namespace x
{
	public class Test
	{ }
}

namespace y
{
	public class Test
	{ }
}

namespace b
{
	public class a
	{
		public static void Main()
		{
			// Test should be an alias to x.Test
			Test test = new Test();
		}
	}
}