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

test-262.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fba86f55777e57318f8504de483fca35cf2e0d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace n1 {
	class Attribute {}
}

namespace n3 {
	using n1;
	using System;
	class A {
		void Attribute () {
		}
		void X ()
		{
			Attribute ();
		}
		static void Main () {
			new A ().X ();
		}
	}
}