f1e66d0654
#KT-26269 Fixed
8 lines
161 B
Kotlin
Vendored
8 lines
161 B
Kotlin
Vendored
// LANGUAGE_VERSION: 1.2
|
|
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun getValue(i: Int): String = ""
|
|
|
|
fun test() {
|
|
listOf(1).<caret>associate { it to getValue(it) }
|
|
} |