1(
2x="line 1
3line 2
4line 3" &&
5# LINT: missing "&&" on assignment
6y='line 1
7line2'
8foobar
9) &&
10(
11# LINT: apostrophe (in a contraction) within string not misinterpreted as
12# LINT: starting multi-line single-quoted string
13echo "there's nothing to see here" &&
14exit
15) &&
16(
17echo "xyz" "abc
18def
19ghi" &&
20echo 'xyz' 'abc
21def
22ghi' &&
23echo 'xyz' "abc
24def
25ghi" &&
26barfoo
27)