// "Replace Implements with Static Import" "false" public class X implements I { void bar() { System.out.println(FOO); } } interface I extends I1{ String FOO = "foo"; } interface I1 { void foo(){} }