Sign in
coral
/
busybox
/
e04a38c0c91c17ce27fb11d83f6767614b7d6b59
/
.
/
shell
/
ash_test
/
ash-vars
/
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