]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - tests/array21.sub
bash-4.4 beta release
[thirdparty/bash.git] / tests / array21.sub
index 5dfa16b8acdfc976eddad47d434420b4fb1a5111..d1f705e3dd9e8c686698abb324b9e6c3ced685de 100644 (file)
@@ -29,3 +29,9 @@ a=()
 typeset -p a
 A=()
 typeset -p A
+
+declare -a foo
+declare foo='(1 2 3)'
+declare foo[1]='(4 5 6)'
+
+declare -p foo