import java.util.*;
public class SimpleArrays
{
@SafeVarargs
public static <T> List<T> asList( T... a )
{
return new ArrayList<>( a );
}
}
asList() is taken from Oracles JDK implementation of java.util.Arrays.
The error is
error: cannot infer type arguments for ArrayList<>
return new ArrayList<>( a );
1 error
How can this work? Oracle uses the same compiler that we do.
javac? Please show your compilation command and the output ofjavac -version. – dogbane Aug 16 '11 at 13:42