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

23 lines
698 B
Java

/* @test /nodynamiccopyright/
* @bug 7024568
* @summary Very long method resolution causing OOM error
* @compile/fail/ref=T7024568.out -XDrawDiagnostics T7024568.java
*/
class Main {
void test(Obj o) {
o.test(0, 0, 0, 0, 0, 0, 0, 0, undefined);
}
}
interface Test {
public void test(int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, String str);
public void test(int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, long l);
}
interface Obj extends Test, A, B, C, D, E {}
interface A extends Test {}
interface B extends A, Test {}
interface C extends A, B, Test {}
interface D extends A, B, C, Test {}
interface E extends A, B, C, D, Test {}