CCTest11iii.java :  » IDE-Netbeans » java » test11 » Java Open Source

Java Open Source » IDE Netbeans » java 
java » test11 » CCTest11iii.java
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;
        }
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.