xref
: /
freebsd
/
bin
/
sh
/
tests
/
builtins
/
local6.0
(revision 2e3507c25e42292b45a5482e116d278f5515d04d)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
2
f() {
3
local x
4
readonly x=2
5
}
6
x=3
7
f
8
x=4
9
[ "$x" = 4 ]
10