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

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";
}