1# $FreeBSD: head/bin/sh/tests/parameters/ifs1.0 306843 2016-10-08 13:40:12Z jilles $
2
3env IFS=_ ${SH} -c '
4rc=2
5nosuchtool_function() {
6	rc=0
7}
8v=nosuchtool_function
9$v && exit "$rc"
10'
11