hush: fix "true | func_with_return" not allowing return.
[oweals/busybox.git] / shell / ash_test / ash-misc / func_local1.tests
1 export z=z
2 f() { local z=a; env | grep ^z; }
3 f
4 env | grep ^z
5 echo Done