aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/return2.1
blob: 4da86f5b762cf498998d8fc6bda14b46fabe2411 (plain) (blame)
1
2
3
4
5
6
7
# $FreeBSD: head/bin/sh/tests/builtins/return2.1 149791 2005-09-05 09:42:10Z stefanf $
f() {
	true && return 1
	return 0
}

f