xref
: /
freebsd
/
bin
/
sh
/
tests
/
builtins
/
local6.0
(revision 46c599340f187db577b9212ab18022f3c7380c68)
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