hush: small fix for repeated continue and fix for wrong loop depth count
[oweals/busybox.git] / shell / hush_test / hush-misc / continue1.tests
1 for v in a b c; do echo A:$v; continue 666; done
2 echo OK1
3 for v in a b c; do echo A:$v; continue 666; done
4 echo OK2