f1e66d0654
#KT-26269 Fixed
9 lines
214 B
Kotlin
Vendored
9 lines
214 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun getValue(i: Int): String = ""
|
|
|
|
fun associateWithTo() {
|
|
val destination = mutableMapOf<Int, String>()
|
|
arrayOf(1).<caret>associateTo(destination) { it to getValue(it) }
|
|
}
|