Lines Matching refs:bar
39 z.bar[0]=hello
40 z.bar[2]=world
41 z.bar[1]=(x=4 y=5)
43 typeset -a bar=(
61 z.bar[1]=yesyes
62 [[ ${z.bar[1]} == yesyes ]] || err_exit 'reassign of index array compound variable fails'
63 z.bar[1]=(x=12 y=5)
64 [[ ${z.bar[1]} == $'(\n\tx=12\n\ty=5\n)' ]] || err_exit 'reassign array simple to compound variable fails'
75 z.bar[1]=yes
76 [[ ${z.bar[1]} == yes ]] || err_exit 'index array assignment to compound variable in subshell not working'
82 bar=( zzz=no rst=fed)
230 (trap 'print bar' EXIT;print -n foo)
301 function bar
496 $SHELL 2> /dev/null -c '[[ ${ print foo },${ print bar } == foo,bar ]]' || err_exit '${ print foo },${ print bar } not working'
497 $SHELL 2> /dev/null -c '[[ ${ print foo; },${ print bar } == foo,bar ]]' || err_exit '${ print foo; },${ print bar } not working'