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