2 // This just test that we can compile this code.
4 // The challenge here is that LookupType needs to first look
5 // in classes defined in its class or parent classes before resorting
6 // to lookups in the namespace.
14 public enum Operator { A, B }
;
16 public Blah (Operator x
)
22 public static int Main ()
24 Blah b
= new Blah (Blah
.Operator
.A
);