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