1 package test5; 2 3 import static test4.CCTest4a.*; 4 5 public class CCTest5b { 6 7 public static void main(String[] args) { 8 int x = TEST_FIELD; //Check wheher the CC provides TEST_FIELD after the = 9 10 testMethod().get(0).indexOf("Hello"); //Check whether the CC provides "testMethod". Check the methods provided after the dot. 11 } 12 } 13