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