java-topology/test/langtools/tools/javac/6979683/TestCast6979683_BAD36.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
412 B
Java

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