Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-82.cs
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
7         {
8                 A_1, A_2, A_3
9         }
10
11         namespace N2
12         {       
13                 public class B
14                 {
15                         A member;
16
17                         void Method (ref A a)
18                         {
19                         }
20
21                         public static int Main ()
22                         {
23                                 return 0;
24                         }
25                 }
26
27         }
28 }
29
30 namespace N1.N3
31 {       
32         public class B
33         {
34                 A member;
35
36                 void Method (ref A a)
37                 {
38                 }
39         }
40 }