// ISSUE: KT-63593 // WITH_STDLIB fun jso(): T = mutableMapOf() as T fun box(): String { val obj = jso() obj["a"] = run { "OK" } return obj["a"] }