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