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