aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/builtins/return2.1
blob: 8cd5ca58a42de1272278f137ce06957ff6409c48 (plain) (blame)
1
2
3
4
5
6
f() {
	true && return 1
	return 0
}

f