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