Details
Description
This is valid according to JLS3:
class Test {
void test(Float f, Integer i) {
boolean b = f == i;
}
}
The compiler does not accept it.
###@###.### 2004-08-04
class Test {
void test(Float f, Integer i) {
boolean b = f == i;
}
}
The compiler does not accept it.
###@###.### 2004-08-04