Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/langtools/tools/javac/6979683/TestCast6979683_BAD37.java
41149 views
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_BAD37.java.errlog -XDrawDiagnostics TestCast6979683_BAD37.java
8
*/
9
10
public class TestCast6979683_BAD37 {
11
//...
12
//...
13
//...
14
static int iconvBAD3(Comparable<Short> o) { return (int)o; } //BAD: wrong instance
15
//...
16
//...
17
}
18
19