summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/testdir/input/sh_11.sh
blob: 6e192fc3c453928afdda9f94a5bf1b9860173b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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