add ISafeSerializationData
[mcs.git] / tests / test-90.cs
blob8d7c147ec3fd351599ce5a13971e01be5c198f12
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 static int Main ()
34 return 0;