hush: more rodust detection of unterminated strings etc;
[oweals/busybox.git] / shell / hush_test / hush-misc / break5.tests
1 while true; do echo A; { echo B; break; echo C; }; echo D; done
2 echo $?
3 for v in a b c; do echo A:$v; (echo B; break; echo C); echo D; done
4 echo $?