Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
aa3576a29b9619f4e1c1b131f5db53ad2bc2cb00
/
.
/
shell
/
hush_test
/
hush-bugs
/
var3.tests
blob: 97b102cbede2163e0bb3273da691882e3b5f9f5d [
file
] [
log
] [
blame
]
x
=
0
;
f
()
{
local
x
=
1
;
echo $x
;
local
x
;
echo $x
;
unset x
;
echo $x
;
local
x
;
echo $x
;
};
f
;
echo $x