mirror of
https://github.com/vim/vim
synced 2025-05-02 22:37:47 +02:00
20 lines
156 B
Bash
20 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
|
|
|