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