01: package test8;
02:
03: publicclass CCTest8iii {
04:
05: publicstaticvoid 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: }
11:
12: privatestatic enum InnerEnum {
13: A, B, C
14: }
15: }