f1e66d0654
#KT-26269 Fixed
13 lines
227 B
Kotlin
Vendored
13 lines
227 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun getValue(i: Int): String = ""
|
|
|
|
fun test(b: Boolean) {
|
|
listOf(1).<caret>associate {
|
|
if (b) {
|
|
it to getValue(it)
|
|
} else {
|
|
it to ""
|
|
}
|
|
}
|
|
} |