f1e66d0654
#KT-26269 Fixed
11 lines
247 B
Kotlin
Vendored
11 lines
247 B
Kotlin
Vendored
// PROBLEM: Replace 'associate' with 'associateWith'
|
|
// FIX: Replace with 'associateWith'
|
|
// WITH_RUNTIME
|
|
fun getValue(i: Int): String = ""
|
|
|
|
fun test() {
|
|
listOf(1).<caret>associate {
|
|
val value = getValue(it)
|
|
it to value
|
|
}
|
|
} |