Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/replaceImplementsWithStaticImport/after7.java
2010-06-28 18:58:36 +04:00

19 lines
266 B
Java

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