The generics code is invalid:
using java.io;
using java.net;
using java.util;
using java.lang;
package test {
public class Main {
public static void main(String[] args){
Set<?> copy = new HashSet<?>(); // illegal
Set<?> s2 = new HashSet<Object>(); // illegal
System.out.println("DONE");
}
}
}
Original issue reported on code.google.com by ice.ta...@gmail.com on 29 Sep 2010 at 9:42
Original issue reported on code.google.com by
ice.ta...@gmail.com
on 29 Sep 2010 at 9:42