86d8468b8b
^KT-48622 Fixed
8 lines
172 B
Kotlin
Vendored
8 lines
172 B
Kotlin
Vendored
fun <K, V> buildMap(builderAction: MutableMap<K, V>.() -> Unit): Map<K, V> = mapOf()
|
|
|
|
fun box(): String {
|
|
val x = buildMap {
|
|
put("", "")
|
|
}
|
|
return "OK"
|
|
} |