summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/func6.tests (plain)
blob: 029c3e85e138a09658f87bc695da8673df7dc8ce
1f1() {
2 while return 2; do :; done
3}
4f1
5echo Two:$?
6
7f2() {
8 while :; do return 2; done
9}
10f2
11echo Two:$?
12