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