hush: fix misparsing of "... do eval a= ...". Closes 3721
[oweals/busybox.git] / shell / hush_test / hush-misc / nommu2.tests
1 echo Not shown | if true; then echo $(echo Ok); fi
2 echo Not shown | if true; then echo `echo Ok`; fi
3 echo Not shown | ( if true; then echo $(echo Ok); fi )
4 echo Not shown | ( if true; then echo `echo Ok`; fi )
5 echo Done