Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/replaceImplementsWithStaticImport/before8.java
2010-06-28 18:58:36 +04:00

16 lines
260 B
Java

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