summary refs log tree commit diff
path: root/bin/cash/tests/builtins/return2.1
blob: 4ed4dbe8c13193d95b0e056c5b035d2f988222a1 (plain) (blame)
1
2
3
4
5
6
7
# $FreeBSD: releng/12.0/bin/sh/tests/builtins/return2.1 149791 2005-09-05 09:42:10Z stefanf $
f() {
	true && return 1
	return 0
}

f