mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
12 lines
250 B
Kotlin
Vendored
12 lines
250 B
Kotlin
Vendored
// DONT_TARGET_EXACT_BACKEND: WASM
|
|
// WASM_MUTE_REASON: STDLIB_COLLECTIONS
|
|
// KJS_WITH_FULL_RUNTIME
|
|
// WITH_RUNTIME
|
|
|
|
var map: Map<Any, Set<Any>> = emptyMap()
|
|
|
|
fun box(): String {
|
|
map += "OK" to emptySet()
|
|
return map.keys.first().toString()
|
|
}
|