// PROBLEM: none // WITH_RUNTIME fun getValue(i: Int): String = "" fun test(b: Boolean) { listOf(1).associate { if (b) { it to getValue(it) } else { it to "" } } }