9 lines
154 B
Plaintext
Vendored
9 lines
154 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun test(b: Boolean, x: Int, y: Int?) {
|
|
val list = mutableListOf<Int?>()
|
|
list += if (b) {
|
|
x
|
|
} else {
|
|
y
|
|
}
|
|
} |