// "Replace implements with static import" "true-preview" public class X implements I { void foo() { System.out.println(FOO); } } interface I { String FOO = "foo"; }