04638eea6b
#KT-31443 Fixed
7 lines
151 B
Kotlin
Vendored
7 lines
151 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test(b: Boolean) {
|
|
val list1 = mutableListOf(1)
|
|
val list2 = mutableListOf(2)
|
|
|
|
if (b) {list1} else {list2}<caret> += 3
|
|
} |