aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/set-e/if2.0
blob: 188361bcac4e9506d3e1cd5dd60dbce48c3371be (plain) (blame)
1
2
3
4
5
6
7
# $FreeBSD: head/bin/sh/tests/set-e/if2.0 149781 2005-09-04 11:59:59Z stefanf $
set -e
# PR 28852
if true; then
	false && true
fi
exit 0