// !DIAGNOSTICS: -UNUSED_PARAMETER -PLATFORM_CLASS_MAPPED_TO_KOTLIN interface IBase : Map interface TestDerivedInterfaceHiding : IBase { fun replace(key: String, value: String): String? } interface TestDerivedInterfaceDefault : IBase { fun replace(key: String, value: String): String? = TODO() }