hush: fix "true | func_with_return" not allowing return.
[oweals/busybox.git] / shell / ash_test / ash-misc / func_return2.tests
1 f1() { return 2; }
2 f1
3 echo Two:$?
4 false
5 true | f1
6 echo Two:$?