Files
kotlin/compiler/testData/codegen/box/builtinStubMethods/extendJavaCollections/hashMap.kt

19 lines
215 B
Kotlin
Vendored

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"
}