blob: 0c6da441e3b3fc22cc039932a56c653e1d7c38aa [file] [log] [blame]
// FULL_JDK
// WITH_STDLIB
class C(val xs: MutableList<String>)
fun box(): String {
val c = C(ArrayList<String>())
c.xs += listOf("OK")
return c.xs[0]
}