Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
74d40589288890fffea437ed2f38ad1f2dc740e5
/
.
/
shell
/
hush_test
/
hush-vars
/
var3.tests
blob: 97b102cbede2163e0bb3273da691882e3b5f9f5d [
file
] [
log
] [
blame
]
Denys Vlasenko
73327a0
2015-04-18 19:38:13 +0200
[
diff
] [
blame
]
1
x
=
0
;
f
()
{
local
x
=
1
;
echo $x
;
local
x
;
echo $x
;
unset x
;
echo $x
;
local
x
;
echo $x
;
};
f
;
echo $x