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

26 lines
397 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4855358
* @summary add support for JSR 201's static import facility
* @author gafter
*
* @compile/fail/ref=StaticImport2.out -XDrawDiagnostics StaticImport2.java
*/
package p;
import static p.A.*;
import static p.B.*;
interface A {
int K = 3;
}
interface B {
int K = 4;
}
class C {
void f() {
int x = K; // ambiguous
}
}