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.
This commit is contained in:
commit
0a580b313d
70422 changed files with 17213626 additions and 0 deletions
10
test/langtools/tools/javac/ClassCycle/ClassCycle4.java
Normal file
10
test/langtools/tools/javac/ClassCycle/ClassCycle4.java
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* @test /nodynamiccopyright/
|
||||
* @bug 8320220
|
||||
* @summary Fix infinite recursion in cyclic inheritance situation
|
||||
* @compile/fail/ref=ClassCycle4.out -XDrawDiagnostics ClassCycle4.java
|
||||
*/
|
||||
|
||||
interface ClassCycle4 extends I1, I2 {}
|
||||
interface I1 extends ClassCycle4 {}
|
||||
interface I2 extends ClassCycle4 {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue