f1e66d0654
#KT-26269 Fixed
8 lines
204 B
Plaintext
Vendored
8 lines
204 B
Plaintext
Vendored
// PROBLEM: Replace 'associate' with 'associateWith'
|
|
// FIX: Replace with 'associateWith'
|
|
// WITH_RUNTIME
|
|
fun getValue(i: Int): String = ""
|
|
|
|
fun test() {
|
|
sequenceOf(1).associateWith { getValue(it) }
|
|
} |