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