xref: /freebsd/bin/sh/tests/builtins/for3.0 (revision 069ac184)
1
2r=x
3f() { return 42; }
4for i in x`f`; do
5	r=$?
6done
7[ "$r" = 42 ]
8