// WITH_RUNTIME fun test(b: Boolean, x: Int, y: Int?) { val list = mutableListOf() if (b) { list += x } else { list += y } }