mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
21 lines
266 B
Kotlin
Vendored
21 lines
266 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// IGNORE_BACKEND: NATIVE
|
|
class A : HashMap<String, Double>()
|
|
|
|
fun box(): String {
|
|
val a = A()
|
|
val b = A()
|
|
|
|
a.put("", 0.0)
|
|
a.remove("")
|
|
|
|
a.putAll(b)
|
|
a.clear()
|
|
|
|
a.keys
|
|
a.values
|
|
a.entries
|
|
|
|
return "OK"
|
|
}
|