11 lines
191 B
Kotlin
Vendored
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]
|
|
} |