1# $FreeBSD$
2
3r=x
4f() { return 42; }
5for i in x`f`; do
6	r=$?
7done
8[ "$r" = 42 ]
9