xref: /freebsd/bin/sh/tests/builtins/local4.0 (revision 8cc087a1eee9ec1ca9f7ac1e63ad51bdb5a682eb)
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