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