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