java-topology/test/langtools/tools/javac/capture/Capture2.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
397 B
Java

/*
* @test /nodynamiccopyright/
* @bug 5029773
* @summary soundness problem with failure to substitute wildcard as type formal argument
* @author gafter
*
* @compile/fail/ref=Capture2.out -XDrawDiagnostics Capture2.java
*/
package capture2;
class R<T extends R<T>> {
T f() { return null; }
T t;
void x(R<?> r) {
this.t = r.f().t; // this should be an error!
}
}