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