xref: /freebsd/bin/sh/tests/parameters/ifs1.0 (revision 22cf89c938886d14f5796fc49f9f020c23ea8eaf)
1
2env IFS=_ ${SH} -c '
3rc=2
4nosuchtool_function() {
5	rc=0
6}
7v=nosuchtool_function
8$v && exit "$rc"
9'
10