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