Files
kotlin-fork/compiler/testData/codegen/box/inlineArgsInPlace/mapSet.kt
T
2021-08-13 18:08:47 +03:00

9 lines
152 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FULL_JDK
// WITH_RUNTIME
fun box(): String {
val m = HashMap<String, String>()
m["ok"] = "OK"
return m["ok"]!!
}