vim/runtime/syntax/testdir/input/sh_11.sh
Aliaksei Budavei 64de03a22b
runtime(syntax-tests): remove executable bit from sh test file
related: #14138

Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-03-07 21:33:51 +01:00

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