init version.
[bush.git] / tests.bak / nameref1.sub
blob50bb25d6efc1b5dd89e98b16fe5ba58338285cd5
1 # indirect referencing of a nameref returns the variable name it references
2 unset foo bar
4 bar=one
5 foo=bar
7 typeset -n foo
9 echo ${foo}
10 echo ${!foo}
12 # this is a current incompatibility
13 echo ${!foo[0]}