01: package test14;
02:
03: publicclass CCTest14iv {
04:
05: publicstaticvoid main(String[] args) {
06:List<String> l; //Check the CC after <
07:
08: l = newList<String>(); //Check the CC after <
09:
10: l.add("Hello, world"); //Check the signature of the method provided by the CC
11:
12: }
13:
14: }