[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / test-857.cs
blob3da34d63a7a530c847470690f4c2328a3119b606
1 using System;
3 public class Outer
5 public enum Inner
7 ONE,
8 TWO
12 public class TypeHiding
15 public static bool Test1 (Outer Outer)
17 return 0 == Outer.Inner.ONE;
20 public static bool Test2 ()
22 Outer Outer = null;
23 return 0 == Outer.Inner.ONE;
26 public static void Main ()