Start 1.33.0 development cycle
[oweals/busybox.git] / shell / hush_test / hush-parsing / groups_and_keywords2.tests
1 # This is an error
2 (eval 'if() { echo; }')
3 echo Fail:$?
4 # ^^^^^^ bash prints 1, but interactively it sets $? = 2
5 # we print 2
6
7 # This is an error, and it aborts in script
8 if() { echo; }
9 echo Not reached