busybox/shell/hush_test/hush-arith/arith-comma1.tests
Denys Vlasenko 3df885abe3 shell/math: fix the order of variable resolution in binops
function                                             old     new   delta
arith_apply                                         1134    1143      +9

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2023-06-14 11:33:59 +02:00

6 lines
64 B
Text
Executable file

exec 2>&1
a='b=10'
b=3
echo 10:$((a,b))
echo "a=$a"
echo "b=$b"