blob: e0216dbabe2fd56a43593777150daa2cab99f1af [file] [log] [blame]
// "Replace Implements with Static Import" "false"
public class X implements <caret>I {
void bar() {
System.out.println(FOO);
}
}
interface I extends I1{
String FOO = "foo";
}
interface I1 {
void foo(){}
}