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