aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/func5.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/func5.tests')
-rwxr-xr-xshell/hush_test/hush-misc/func5.tests5
1 files changed, 2 insertions, 3 deletions
diff --git a/shell/hush_test/hush-misc/func5.tests b/shell/hush_test/hush-misc/func5.tests
index 9c5f9fa48..5c33560bc 100755
--- a/shell/hush_test/hush-misc/func5.tests
+++ b/shell/hush_test/hush-misc/func5.tests
@@ -1,9 +1,8 @@
f() { echo $1; }
f 1
-# hush fails on this syntax, but i've never seen anyone use it ...
-#f() ( echo $1; )
+f() ( echo $1; )
f 2
-#f() ( echo $1 )
+f() ( echo $1 )
f 3