15 lines
342 B
Kotlin
Vendored
15 lines
342 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER -PLATFORM_CLASS_MAPPED_TO_KOTLIN
|
|
|
|
interface IBase : Map<String, String>
|
|
|
|
interface TestDerivedInterfaceHiding : IBase {
|
|
fun replace(key: String, value: String): String?
|
|
}
|
|
|
|
interface TestDerivedInterfaceDefault : IBase {
|
|
fun replace(key: String, value: String): String? = TODO()
|
|
}
|
|
|
|
|