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