blob: 858e76c1c8f7c0a0f5828c0dd3965869f43d85ba [file] [log] [blame]
import static I.FOO;
import static I1.BAZZ;
// "Replace Implements with Static Import" "true"
public class X {
void bar() {
System.out.println(FOO);
System.out.println(BAZZ);
}
}
interface I extends I1{
String FOO = "foo";
}
interface I1 {
String BAZZ = "bazz";
}