01: package test10;
02:
03: import test9.CCTest9a;
04:
05: public class CCTest10b {
06:
07: public static void main(String[] args) {
08: CCTest9a e; //Check that CCTest9a is in the CC
09:
10: e = CCTest9a.A; //Check the CC provided after the dot
11:
12: CCTest9a x = e.A; //Check the CC provided after the dot
13: }
14:
15: }
|