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

n1.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b47fd24b2ca7095f54aff0af3f6b5290227e2915 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace A {
	class X {
		void Y () {}
	}
}

namespace A {
	class XX : X {
		void YY () {}
	}
}