1# $FreeBSD: src/tools/regression/bin/sh/builtins/return2.1,v 1.1 2005/09/05 09:42:10 stefanf Exp $
2f() {
3	true && return 1
4	return 0
5}
6
7f
8