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

test-466.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94365cd1a013f87bbc1d65eef3d19ab9ae555ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compiler options: -r:test-466-lib.dll

namespace A.X
{
	using A.B;
	
	class Test
	{
		public static void Main ()
		{
			C c = new C ();
			c.Foo ();
		}
	}
}