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