JustOS/busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary2.tests

8 lines
124 B
Plaintext
Executable File

exec 2>&1
a='b=+err+'
b=5
# The not-taken branch should not parse variables
echo 6:$((0 ? a : ++b))
echo "a=$a"
echo "b=$b"