Files
kotlin-fork/compiler/testData/codegen/box/inlineArgsInPlace/mutableCollectionPlusAssign.kt
T
2021-08-13 18:08:47 +03:00

11 lines
191 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FULL_JDK
// WITH_RUNTIME
class C(val xs: MutableList<String>)
fun box(): String {
val c = C(ArrayList<String>())
c.xs += listOf("OK")
return c.xs[0]
}