I'm trying in this example to copy all values from one associative array to another. I'm checking my code against syntax errors using zsh -n but this one throws a test:12: bar: assignment to invalid subscript range.
#!/usr/bin/env zsh
typeset -A foo bar
foo=(
Adama "Commander"
Tigh "Executive Officer"
Roslin "President"
)
bar=()
for i in ${(k)foo}; do
# "rubbish"
bar[$i]=$foo[$i]
done
If I uncomment the # "rubbish line, zsh -n stops complaining. Is there something wrong with my code or with zsh -n ?