xref: /freebsd/bin/sh/tests/builtins/local6.0 (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
1*cce13d65SJilles Tjoelker
2*cce13d65SJilles Tjoelkerf() {
3*cce13d65SJilles Tjoelker	local x
4*cce13d65SJilles Tjoelker	readonly x=2
5*cce13d65SJilles Tjoelker}
6*cce13d65SJilles Tjoelkerx=3
7*cce13d65SJilles Tjoelkerf
8*cce13d65SJilles Tjoelkerx=4
9*cce13d65SJilles Tjoelker[ "$x" = 4 ]
10