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

test-768.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54704761fe3ef95acfca93a46b712735f916da49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace A.N
{
	class Wrong
	{
	}
}

namespace N
{
	class C
	{
		public static string value;
	}
}

namespace X
{
	using A;
	
	public class TestClass
	{
		public static void Main ()
		{
			string s = N.C.value;
		}
	}
}