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

test-82.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ff4032897ba7b425e7e901d49310908fe2c8bcd (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
//
// Test to ensure that we correctly perform type lookups - thanks to Felix A.I
//
namespace N1
{	
	public enum A
	{
		A_1, A_2, A_3
	}

	namespace N2
	{	
		public class B
		{
			A member;

			void Method (ref A a)
			{
			}

			public static int Main ()
			{
				return 0;
			}
		}

	}
}

namespace N1.N3
{	
	public class B
	{
		A member;

		void Method (ref A a)
		{
		}
	}
}