blob: bf040348c46187741adeec1107c50edfeecc80c7 [file] [log] [blame]
// WITH_RUNTIME
class Foo(var bar: Int)
fun test() {
val foo = Foo(1)
println(foo.bar)
<selection>foo.bar</selection> = foo.bar + 1
}