1 package test2; 2 3 import java.util.ArrayList; 4 import java.util.List; 5 6 public class CCTest2v { 7 8 public static void main(String[] args) { 9 List<String> l; //Check the CC after < 10 11 l = new ArrayList<String>(); //Check the CC after < 12 13 l.add("Hello, world"); //Check the signature of the method provided by the CC 14 15 16 } 17 } 18