blob: d566b52de7b0f5ed12d92474d230ec3eec5a4721 [file] [log] [blame]
import java.util.List;
class B{
public static void bar(){
foo(null).get(0).compareTo(null);
}
static <T extends List<Comparable<T>>> T foo(T x) {
return x;
}
}