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

10 lines
175 B
Java

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