blob: 07ea7a37776cde8213d9ada40e7df9a9fe77cf22 [file] [log] [blame]
/*
* @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;
}
}