hush: more rodust detection of unterminated strings etc;
[oweals/busybox.git] / shell / hush_test / hush-misc / break2.tests
1 while true; do
2     echo A
3     while true; do echo AA; break 2; echo BB; done
4     echo B
5 done
6 echo OK:$?