shell: remove ${#+} tests, it is not a valid construct
[oweals/busybox.git] / shell / hush_test / hush-vars / var3.tests
1 x=0; f() { local x=1; echo $x; local x; echo $x; unset x; echo $x; local x; echo $x; }; f; echo $x