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

19 lines
452 B
Java

/**
* @test /nodynamiccopyright/
* @bug 8238213
* @summary Method resolution should stop on static error
* @compile/fail/ref=ShouldStopOnStaticError.out -XDrawDiagnostics ShouldStopOnStaticError.java
*/
public class ShouldStopOnStaticError {
static void foo() {
test1(5.0);
test2((Double)5.0);
}
void test1(double d) {}
void test1(Double d) {}
void test2(Number n) {}
static void test2(Double... d) {}
}