Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/replaceImplementsWithStaticImport/after6.java

18 lines
282 B
Java

import static I.FOO;
import static I1.BAZZ;
// "Replace Implements with Static Import" "true"
public class X {
void bar() {
System.out.println(FOO);
System.out.println(BAZZ);
}
}
interface I extends I1{
String FOO = "foo";
}
interface I1 {
String BAZZ = "bazz";
}