// PROBLEM: none // WITH_RUNTIME fun getValue(i: Int): String = "" fun associateWithTo() { val destination = mutableMapOf() arrayOf(1).associateTo(destination) { it to getValue(it) } }