busybox/shell/hush_test/hush-bugs/env_and_func.tests
2009-04-20 10:52:31 +00:00

7 lines
74 B
Plaintext
Executable File

# UNFIXED BUG
var=old
f() { echo "var=$var"; }
var=val f
echo "var=$var"