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

27 lines
650 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8166108
* @summary Verify that a program cannot access instance state before construction
* @compile/fail/ref=AnonymousInSuperCallNegTest.out -XDrawDiagnostics AnonymousInSuperCallNegTest.java
*/
public class AnonymousInSuperCallNegTest {
static class Base {
Base(Object o) {}
}
static class Outer {
class Inner {}
}
public static class JavacBug extends Base {
int x;
JavacBug() {
super(new Outer().new Inner() {
void foo() {
System.out.println("x = " + x);
}
}); }
}
}