blob: 8b1b5b94a9c7dc6288cf559d3a4c0a6286dfb078 [file]
package test11;
public class CCTest11ii {
private static List<String> l; //Check the CC after <
public static void main(String[] args) {
}
private static class List<T> {
public void add(T t) {
//nothing...
}
public T get(int index) {
return null;
}
}
}