q/tests/programs/op-assign.q
2024-08-02 12:55:25 +02:00

9 lines
No EOL
70 B
Text

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