2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-82.cs
blob9ff4032897ba7b425e7e901d49310908fe2c8bcd
1 //
2 // Test to ensure that we correctly perform type lookups - thanks to Felix A.I
3 //
4 namespace N1
5 {
6 public enum A
8 A_1, A_2, A_3
11 namespace N2
13 public class B
15 A member;
17 void Method (ref A a)
21 public static int Main ()
23 return 0;
30 namespace N1.N3
32 public class B
34 A member;
36 void Method (ref A a)