Files
kotlin-fork/compiler/testData/codegen/box/collections/kt41123.kt
T
Mikhail Glukhikh 672b5ba0d7 K2/Java: implement platform-dependent function filtering in JvmMappedScope
We drop Kotlin function 'remove' or 'getOrDefault' from JvmMappedScope,
if it has platform-dependent annotation, and the bound Java class scope
does not contain a function with the same signature.

#KT-57268 Fixed
2024-01-30 19:44:00 +00:00

12 lines
259 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// DONT_TARGET_EXACT_BACKEND: NATIVE
// WASM_MUTE_REASON: STDLIB_COLLECTION_INHERITANCE
// WITH_STDLIB
open class A : HashMap<String, String>()
fun box(): String {
val a = object : A() {}
a["OK"] = "OK"
return a["OK"]!!
}