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

12 lines
177 B
Java

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