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