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

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