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

21 lines
435 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8193561
* @summary Verify that there is no crash for default methods in mutually dependent interfaces
* @compile/fail/ref=T8193561.out -XDrawDiagnostics T8193561.java
*/
package p;
interface T8193561 extends p.T8193561.I {
interface I extends T8193561 {
default boolean m() {
return false;
}
}
default boolean m() {
return false;
}
}