xref: /freebsd/bin/sh/tests/execution/func3.0 (revision 6296500a85c8474e3ff3fe2f8e4a9d56dd0acd64)
1
2# This may fail when parsing or when defining the function, or the definition
3# may silently do nothing. In no event may the function be executed.
4
5${SH} -c 'unset() { echo overriding function executed, bad; }; v=1; unset v; exit "${v-0}"' 2>/dev/null
6:
7