jdk-24/test/langtools/tools/javac/6979683/TestCast6979683_BAD35.java

18 lines
399 B
Java

/*
* @test /nodynamiccopyright/
* @bug 6979683
* @summary Verify that casts can narrow and unbox at the same time
* @author jrose
*
* @compile/fail/ref=TestCast6979683_BAD35.java.errlog -XDrawDiagnostics TestCast6979683_BAD35.java
*/
public class TestCast6979683_BAD35 {
//...
static int iconvBAD1(Number o) { return o; } //BAD: cast needed
//...
//...
//...
//...
}