// "Make 'I.foo()' static" "true-preview" interface I { default void foo() { System.out.println(); } } class B { { I.foo(); } }