Start 1.33.0 development cycle
[oweals/busybox.git] / shell / ash_test / ash-misc / func_return1.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:$?