summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/func3.tests (plain)
blob: fa6f26a231065a21ab47f648b2d7ba8d65e7cb45
1f() { false; return; echo BAD; };
2{ f; echo One:$?; }; echo Zero:$?
3
4f() { false; return; };
5f; echo One:$?
6
7f() { return 5; };
8f; echo Five:$?
9