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