package test; public interface InterfaceWithDefault { default String defaultMethod() { return "str"; } }