01: package test4;
02:
03: import static test4.CCTest4a.TEST_FIELD;
04: import static test4.CCTest4a.testMethod;
05:
06: public class CCTest4b {
07:
08: public static void main(String[] args) {
09: int x = TEST_FIELD; //Check wheher the CC provides TEST_FIELD after the =
10:
11: testMethod().get(0).indexOf("Hello"); //Check whether the CC provides "testMethod". Check the methods provided after the dot.
12: }
13: }
|