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

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