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