f1e66d0654
#KT-26269 Fixed
12 lines
234 B
Kotlin
Vendored
12 lines
234 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun getKey(i: Int): Long = 1L
|
|
fun getValue(i: Int): String = ""
|
|
|
|
fun test() {
|
|
listOf(1).<caret>associate {
|
|
val key = getKey(it)
|
|
val value = getValue(it)
|
|
key to value
|
|
}
|
|
} |