1/* 2 * @test /nodynamiccopyright/ 3 * @bug 6979683 4 * @summary Verify that casts can narrow and unbox at the same time 5 * @author jrose 6 * 7 * @compile/fail/ref=TestCast6979683_BAD39.java.errlog -XDrawDiagnostics TestCast6979683_BAD39.java 8 */ 9 10public class TestCast6979683_BAD39 { 11 //... 12 //... 13 //... 14 //... 15 //... 16 static float cconvBAD2(Number o) { return (char)o; } //BAD 17} 18 19