java-topology/test/langtools/tools/javac/warnings/Unchecked.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

60 lines
1.3 KiB
Java

/*
* @test /nodynamiccopyright/
* @bug 4986256
* @compile/ref=Unchecked.noLint.out -XDrawDiagnostics Unchecked.java
* @compile/ref=Unchecked.lintUnchecked.out -Xlint:unchecked -XDrawDiagnostics Unchecked.java
* @compile/ref=Unchecked.lintAll.out -Xlint:all -XDrawDiagnostics Unchecked.java
*/
import java.util.ArrayList;
import java.util.List;
// control: this class should generate warnings
class Unchecked
{
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
// tests: the warnings that would otherwise be generated should all be suppressed
@SuppressWarnings("unchecked")
class Unchecked2
{
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
class Unchecked3
{
@SuppressWarnings("unchecked")
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
class Unchecked4
{
void m() {
@SuppressWarnings("unchecked")
class Inner {
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}
}
}
// this class should produce warnings because @SuppressWarnings should not be inherited
class Unchecked5 extends Unchecked2
{
void m() {
List l = new ArrayList<String>();
l.add("abc");
}
}