01: package test12; 02: 03: public class CCTest12ii { 04: 05: public static void main(String[] args) { 06: List<String> l; //Check the CC after < 07: 08: } 09: 10: private static class List<T> { 11: public void add(T t) { 12: //nothing... 13: } 14: 15: public T get(int index) { 16: return null; 17: } 18: } 19: }