1(
2foo &&
3# LINT: ")" in Bash array assignment not misinterpreted as subshell-closing ")"
4bar=(gumbo stumbo wumbo) &&
5baz
6) &&
7(
8foo &&
9# LINT: Bash array length operator not misinterpreted as comment
10bar=${#bar[@]} &&
11baz
12)