// PROBLEM: Replace 'associateTo' with 'associateByTo' // FIX: Replace with 'associateByTo' // WITH_RUNTIME fun getKey(i: Int): Long = 1L fun test() { val destination = mutableMapOf() listOf(1).associateByTo(destination) { getKey(it) } }