[mono/tests] Fix out of tree build.
[mono-project.git] / mcs / tests / test-90.cs
blobeae64a7dd232a70b0abce9e4f68a39a95be9adc8
1 //
2 // This test just makes sure that we can compile C.A, there used to be
3 // a bug in the compiler that was doing the lookups in the wrong namespace
4 //
5 //
6 namespace N1
7 {
8 public enum A
10 A_1, A_2, A_3
13 public interface B
15 N1.A myProp
17 get;
18 set; // <-- This always worked.
22 public interface C
24 A myProp
26 get;
27 set; // <-- This used to fail.
31 public class Blah {
32 public static int Main ()
34 return 0;