1 ## our_shell: ysh
2
3 # OLD test cases, collected during YSH evoluation
4
5 #### Empty array and assignment builtin (regression)
6 shopt --unset no_osh_builtins
7
8 # Bug happens with shell arrays too
9 empty=()
10 declare z=1 "${empty[@]}"
11 echo z=$z
12 ## STDOUT:
13 z=1
14 ## END
15