aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/bin/sh/builtins/return2.1
blob: b4387ee0ce33be362c9bc504d29d1d2dbd3ab9b4 (plain) (blame)
1
2
3
4
5
6
7
# $FreeBSD: src/tools/regression/bin/sh/builtins/return2.1,v 1.1.10.1.6.1 2010/12/21 17:09:25 kensmith Exp $
f() {
	true && return 1
	return 0
}

f