interface Super { default void method() { System.out.println("Super.method()"); } } interface Sub extends Super { static void foo() { Super.super.method(); } }