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

13 lines
178 B
Java

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