forked from aniani/vim
21 lines
156 B
Bash
21 lines
156 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
# Issue #962
|
||
|
|
||
|
arr=(
|
||
|
1 2 3 4
|
||
|
) # ok
|
||
|
|
||
|
if true; then
|
||
|
|
||
|
arr=(1 2 3 4) # ok
|
||
|
|
||
|
arr=( 1 2 3 4 ) # ok
|
||
|
|
||
|
arr=(
|
||
|
1 2 3 4
|
||
|
) # paren error!
|
||
|
|
||
|
fi
|
||
|
|