aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/set-e/func2.1
blob: 267966d0c7f2f84934c8a9338f7f84211bf06084 (plain) (blame)
1
2
3
4
5
6
7
# $FreeBSD: head/bin/sh/tests/set-e/func2.1 149791 2005-09-05 09:42:10Z stefanf $
set -e
f() {
	false
	exit 0
}
f