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