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

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