]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/errors5.sub
Bash-4.4 patch 19
[thirdparty/bash.git] / tests / errors5.sub
CommitLineData
a0c0a00f
CR
1array[1]=one
2array[2]=two
3
4set -u
5
6( echo ${#array} )
7( echo ${array} )
8
9set -- 1 2 3
10( echo ${#7} )
11( echo ${7} )