blob: 722973e6757d19af818f305f8feea86689202641 [file] [log] [blame]
// WITH_RUNTIME
object X {
var string = "foo"
}
fun main() {
"bar".also { X.string = it }
}