01: package test8;
02:
03: public class CCTest8 {
04:
05: public static void main(String[] args) {
06: InnerEnum e; //Check that InnerEnum is in the CC
07:
08: e = InnerEnum.A; //Check the CC provided after the dot
09:
10: InnerEnum x = e.A; //Check the CC provided after the dot
11: }
12:
13: private static enum InnerEnum {
14: A, B, C
15: }
16: }
|