var p: Int field = 0 get set fun testProperty() { { // BLOCK ( = ().plus(other = 1)) } { // BLOCK ( = ().minus(other = 2)) } { // BLOCK ( = ().times(other = 3)) } { // BLOCK ( = ().div(other = 4)) } { // BLOCK ( = ().rem(other = 5)) } } fun testVariable() { var x: Int = 0 x = x.plus(other = 1) x = x.minus(other = 2) x = x.times(other = 3) x = x.div(other = 4) x = x.rem(other = 5) }