package foo fun box(): Boolean { var a = 3; val b = ++a; --a; --a; return (--a == 1) && (b == 4) }