hush_test: test for subshell function syntax

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2009-05-21 18:24:21 -04:00
parent 7b424fe738
commit 12bcc76e9b
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,3 @@
1
2
3

View File

@ -0,0 +1,9 @@
f() { echo $1; }
f 1
# hush fails on this syntax, but i've never seen anyone use it ...
#f() ( echo $1; )
f 2
#f() ( echo $1 )
f 3