summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var3.tests (plain)
blob: 97b102cbede2163e0bb3273da691882e3b5f9f5d
1x=0; f() { local x=1; echo $x; local x; echo $x; unset x; echo $x; local x; echo $x; }; f; echo $x
2