blob: 295fa9fb4a9e79cfb0600bbaa32326c306a76546 [file] [log] [blame]
package test12;
public class CCTest12iii {
public static void main(String[] args) {
List<String> l; //Check the CC after <
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;
}
}
}