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
26
test/langtools/tools/javac/staticImport/StaticImport2.java
Normal file
26
test/langtools/tools/javac/staticImport/StaticImport2.java
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* @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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue