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: 628f5cb1a8abf4ea5a4bc8c664a5c7a57ccb4b57 (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 ();
		}
		public static void Main () {
			new A ().X ();
		}
	}
}