8cbf364457
Related to KT-18308
7 lines
144 B
Plaintext
Vendored
7 lines
144 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun test(b: Boolean) {
|
|
val list1 = mutableListOf(1)
|
|
val list2 = mutableListOf(2)
|
|
|
|
(if (b) {list1} else list2) += 3
|
|
} |