Files
openide/plugins/sh/core/testData/oldParser/parseAssignment1.sh
Mikhail Mazurkevich b3d360223c [intellij sh] Rename impl => core
GitOrigin-RevId: b0c3fe114c6df798a09d0f46e3a39112e775a0a7
2022-09-10 18:28:42 +00:00

21 lines
160 B
Bash

a=(1 2 3)
a=([1]=2)
a=([1]=2,2,3)
a=("a")
a=(a, "a")
a=(a "a" "b" c d)
a=(
a
)
a=(
a,
)
a=(
a=a
)
a=(
$(echo 1)
)
#now test as simple command
a=([1]=2 2 3)