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