xref: /freebsd/bin/sh/tests/builtins/local1.0 (revision 7c31cdfa408a4ebce7a3e10d29056a15c28bc092)
1# A commonly used but non-POSIX builtin.
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