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

test-818.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3b89e5001baf762258b4d2a71c291f729d112ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

namespace A { class CAttribute : Attribute { } }
namespace B { class CAttribute : Attribute { } }

namespace Foo
{
	using A;
	using B;

	using C = A.CAttribute;

	[C]
	class Foo
	{
		public static void Main ()
		{
		}
	}
}