01: package test1; 02: 03: import java.util.ArrayList; 04: import java.util.List; 05: 06: public class CCTest1iii { 07: private static List<String> l; //Check the CC after < 08: 09: public static void main(String[] args) { 10: l = new ArrayList<String>(); //Check the CC after < 11: 12: } 13: }