busybox: update to 1.25.0
[tomato.git] / release / src / router / busybox / shell / ash_test / ash-misc / func_local2.tests
blob1a9ae559d1accaf95ca58eb17dbe150ef25250b4
1 x=1
2 f() { echo $x; local x=$((x+1)); echo $x; }
3 g() { f; echo $x; f; local x=$((x+1)); f; echo $x; f; }
6 echo $x
7 echo Done