hush: fix a bug in argv restoration after sourcing a file
[oweals/busybox.git] / shell / hush_test / hush-misc / func5.tests
1 f() { echo $1; }
2 f 1
3
4 # hush fails on this syntax, but i've never seen anyone use it ...
5 #f() ( echo $1; )
6 f 2
7
8 #f() ( echo $1 )
9 f 3