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

test-281.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d1f93e1c43c54408e4a7c96d8d8ab575eb2961c (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
namespace Foo
{
	public class Hello
	{
		public static int World = 8;
	}
}

namespace Bar
{
	public class Hello
	{
		public static int World = 9;
	}
}

namespace Test
{
	using Foo;

	public class Test1
	{
		public static int World ()
		{
			return Hello.World;
		}
	}
}

namespace Test
{
	using Bar;

	public class Test2
	{
		public static int World ()
		{
			return Hello.World;
		}
	}
}

class X
{
	public static int Main ()
	{
		if (Test.Test1.World () != 8)
			return 1;
		if (Test.Test2.World () != 9)
			return 2;
		return 0;
	}
}