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