hush: do not assign to readonly VAR in "VAR=VAL CMD" syntax too
[oweals/busybox.git] / shell / hush_test / hush-heredoc / heredoc2.tests
1 foo () {
2 cat <<EOF && { echo "$1" ; }
3 $1
4 EOF
5 }
6
7 foo "bar"