6 lines
114 B
Plaintext
Vendored
6 lines
114 B
Plaintext
Vendored
// FIX: Change type to mutable
|
|
// WITH_RUNTIME
|
|
fun test() {
|
|
val list = mutableListOf(1)<caret>
|
|
list += 2
|
|
} |