// PROBLEM: Replace 'associate' with 'associateWith' // FIX: Replace with 'associateWith' // WITH_RUNTIME fun getValue(i: Int): String = "" fun test() { listOf(1).associate { Pair(it, getValue(it)) } }