summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/for2.0
blob: 2b702cebf34ac0d7b675423f6c640fe9d0459f7c (plain) (blame)
1
2
3
4
5
6
7
8
9
# $FreeBSD: head/bin/sh/tests/builtins/for2.0 230463 2012-01-22 14:00:33Z jilles $

r=x
f() { return 42; }
f
for i in x; do
	r=$?
done
[ "$r" = 42 ]