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