java-topology/test/langtools/tools/javac/6979683/TestCast6979683_BAD37.java
russell@unturf.com 0a580b313d undefect. CWE-407 — 63 sites patched across 27 ecosystems
Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com

Patches, unit tests, benchmarks, whitepaper, and outreach briefs.
Public domain — no copyright claimed. Use freely.
2026-03-26 17:11:57 -04:00

17 lines
418 B
Java

/*
* @test /nodynamiccopyright/
* @bug 6979683
* @summary Verify that casts can narrow and unbox at the same time
* @author jrose
*
* @compile/fail/ref=TestCast6979683_BAD37.java.errlog -XDrawDiagnostics TestCast6979683_BAD37.java
*/
public class TestCast6979683_BAD37 {
//...
//...
//...
static int iconvBAD3(Comparable<Short> o) { return (int)o; } //BAD: wrong instance
//...
//...
}