3789983e89
Reviewed-by: darcy, ihse
14 lines
299 B
Java
14 lines
299 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5082929
|
|
* @summary Comparing Float and Integer
|
|
* @author Peter von der Ah\u00e9
|
|
* @compile/fail/ref=T5082929.out -XDrawDiagnostics T5082929.java
|
|
*/
|
|
|
|
public class T5082929 {
|
|
void test(Float f, Integer i) {
|
|
boolean b = f == i;
|
|
}
|
|
}
|