q/tests/programs/op-assign.q

9 lines
No EOL
70 B
Text

main() {
f(10)
}
f(new) {
old := new
new -= 1
assert new != old
}