init version.
[bush.git] / tests.bak / varenv20.sub
blob5fba8c4c1f537f00b836432247a77871e95a09a0
1 # tests of local variables with the same name as variables passed in the
2 # temporary environment
4 f() { local v=x; local -p; }
5 v=t f
7 f() { local v; declare -p v; }
8 v=t f
10 f() { local v=x; unset v; declare -p v; }
11 v=g
13 v=t f