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

26 lines
540 B
Java

/* @test /nodynamiccopyright/
* @bug 7192246
* @summary check that ill-formed MI hierarchies do not compile
* @compile/fail/ref=Neg02.out -XDrawDiagnostics Neg02.java
*/
class Neg02 {
interface A {
default void m() { Neg02.impl(this); }
}
interface B {
default void m() { Neg02.impl(this); }
}
static class X implements A, B { } //error
void test(X x) {
x.m();
((A)x).m();
((B)x).m();
}
static void impl(A a) { }
static void impl(B b) { }
}