xref: /freebsd/bin/sh/tests/builtins/exit1.0 (revision b37f6c9805edb4b89f0a8c2b78f78a3dcfc0647b)
1# $FreeBSD$
2
3# exit with an argument should overwrite the exit status in an EXIT trap.
4
5trap 'true; exit $?' 0
6false
7