Start 1.33.0 development cycle
[oweals/busybox.git] / shell / ash_test / ash-misc / func_local2.tests
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; }
4 f
5 g
6 echo $x
7 echo Done