// WITH_RUNTIME class Foo(var bar: Int) fun test() { val foo = Foo(1) val message = foo.bar println(message) foo.bar = message + 1 }