// HIGHLIGHT: INFORMATION // PROBLEM: Replace 'associate' with 'associateBy' // FIX: Replace with 'associateBy' // WITH_RUNTIME fun getKey(i: Int): Long = 1L fun getValue(i: Int): String = "" fun test() { listOf(1).associate { Pair(getKey(it), getValue(it)) } }