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