hush: fix a bug in argv restoration after sourcing a file
[oweals/busybox.git] / shell / hush_test / hush-misc / func6.tests
1 f1() {
2         while return 2; do :; done
3 }
4 f1
5 echo Two:$?
6
7 f2() {
8         while :; do return 2; done
9 }
10 f2
11 echo Two:$?