aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/builtins/local4.0
blob: 3955aaa12f1a3cb9f0fc39c8e926ea4c682a6b9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# $FreeBSD$

f() {
	local -- x
	x=2
	[ "$x" = 2 ]
}
x=1
f || exit 3
[ "$x" = 1 ] || exit 3
f || exit 3
[ "$x" = 1 ] || exit 3