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