summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/func_local2.tests (plain)
blob: 1a9ae559d1accaf95ca58eb17dbe150ef25250b4
1x=1
2f() { echo $x; local x=$((x+1)); echo $x; }
3g() { f; echo $x; f; local x=$((x+1)); f; echo $x; f; }
4f
5g
6echo $x
7echo Done
8