Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/replaceImplementsWithStaticImport/after7.java
2014-12-06 11:38:01 +03:00

18 lines
265 B
Java

import static I1.BAZZ;
// "Replace implements with static import" "true"
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";
}