01: package test9;
02:
03: publicclass CCTest9b {
04:
05: publicstaticvoid main(String[] args) {
06:CCTest9a e; //Check that CCTest9a is in the CC
07:
08: e = CCTest9a.A; //Check the CC provided after the dot
09:
10: CCTest9a x = e.A; //Check the CC provided after the dot
11: }
12:
13: }