busybox/shell/hush_test/hush-bugs/env_and_func.tests

7 lines
74 B
Plaintext
Raw Normal View History

2009-04-20 16:22:31 +05:30
# UNFIXED BUG
var=old
f() { echo "var=$var"; }
var=val f
echo "var=$var"