01: package test12;
02:
03: public class CCTest12iii {
04:
05: public static void main(String[] args) {
06: List<String> l; //Check the CC after <
07:
08: l = new List<String>(); //Check the CC after <
09:
10: }
11:
12: private static class List<T> {
13: public void add(T t) {
14: //nothing...
15: }
16:
17: public T get(int index) {
18: return null;
19: }
20: }
21: }
|