9908212c99
#KT-13749 Fixed
16 lines
719 B
Kotlin
Vendored
16 lines
719 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER -PLATFORM_CLASS_MAPPED_TO_KOTLIN
|
|
|
|
interface IBaseWithKotlinDeclaration : Map<String, String> {
|
|
fun replace(key: String, value: String): String?
|
|
}
|
|
|
|
interface TestDerivedInterfaceHidingWithKotlinDeclaration : IBaseWithKotlinDeclaration {
|
|
// VIRTUAL_MEMBER_HIDDEN: hides member declaration inherited from a Kotlin interface
|
|
fun <!VIRTUAL_MEMBER_HIDDEN!>replace<!>(key: String, value: String): String?
|
|
}
|
|
|
|
interface TestDerivedInterfaceDefaultWithKotlinDeclaration : IBaseWithKotlinDeclaration {
|
|
// VIRTUAL_MEMBER_HIDDEN: hides member declaration inherited from a Kotlin interface
|
|
fun <!VIRTUAL_MEMBER_HIDDEN!>replace<!>(key: String, value: String): String? = TODO()
|
|
}
|