// PROBLEM: Replace 'associateTo' with 'associateWithTo' // FIX: Replace with 'associateWithTo' // WITH_RUNTIME fun getValue(i: Int): String = "" fun associateWithTo() { val destination = mutableMapOf() listOf(1).associateTo(destination, { it to "$it" }) }