package test2;
import java.util.ArrayList;
import java.util.List;
publicclass CCTest2v {
publicstaticvoid main(String[] args) {
List<String> l; //Check the CC after <
l = new ArrayList<String>(); //Check the CC after <
l.add("Hello, world"); //Check the signature of the method provided by the CC
}
}