Files
kotlin-fork/compiler/testData/codegen/box/inlineArgsInPlace/mutableCollectionPlusAssign.kt
T
2021-10-01 17:18:49 +03:00

10 lines
167 B
Kotlin
Vendored

// 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]
}