[mcs] Pending implementation of accessors cannot hide base implementation with differ...
[mono.git] / mcs / tests / test-857.cs
1 using System;
2
3 public class Outer
4 {
5         public enum Inner
6         {
7                 ONE,
8                 TWO
9         }
10 }
11
12 public class TypeHiding
13 {
14
15         public static bool Test1 (Outer Outer)
16         {
17                 return 0 == Outer.Inner.ONE;
18         }
19
20         public static bool Test2 ()
21         {
22                 Outer Outer = null;
23                 return 0 == Outer.Inner.ONE;
24         }
25
26         public static void Main ()
27         {
28         }
29 }