package test11;
publicclass CCTest11iii {
privatestatic List<String> l; //Check the CC after <
publicstaticvoid main(String[] args) {
l = new List<String>(); //Check the CC after <
}
privatestaticclass List<T> {
publicvoid add(T t) {
//nothing...
}
public T get(int index) {
return null;
}
}
}