aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-arith/arith-postinc.tests
blob: 3fd9bfed5087bc58cd2f4c76e9f5555e536eee71 (plain)
1
2
3
4
5
echo 1 $((0++1))
echo 1 $((0--1))
x=-1; echo 1 $((0-$x))
x=+1; echo 1 $((0+$x))
echo Ok:$?