xref: /freebsd/bin/sh/tests/builtins/local4.0 (revision 7a0c41d5d7d4e9770ef6f5d56f893efc8f18ab7c)
1# $FreeBSD$
2
3f() {
4	local -- x
5	x=2
6	[ "$x" = 2 ]
7}
8x=1
9f || exit 3
10[ "$x" = 1 ] || exit 3
11f || exit 3
12[ "$x" = 1 ] || exit 3
13