mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
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
|
|
|