class test {
public static void main(String[] args) {
add(1l, 2l);
}
public static void add(long k, Long v) {
}
public static void add(Long k, Long v) {
}
}
this java 1.5+ class can not be compiled, but nothing is highlighted
Description
class test {
public static void main(String[] args) {
add(1l, 2l);
}
public static void add(long k, Long v) {
}
public static void add(Long k, Long v) {
}
}
this java 1.5+ class can not be compiled, but nothing is highlighted