Files
kotlin-fork/compiler/testData/codegen/box/inlineArgsInPlace/mapSet.kt
T
2021-10-01 17:18:49 +03:00

8 lines
128 B
Kotlin
Vendored

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