1# LINT: first subshell statement cuddled with opening "("; for implementation
2# LINT: simplicity, "(..." is split into two lines, "(" and "..."
3(cd foo &&
4bar
5) &&
67
# LINT: same with missing "&&"
8(cd foo
9bar
10) &&
1112
# LINT: closing ")" cuddled with final subshell statement
13(
14cd foo &&
15bar) &&
1617
# LINT: "(" and ")" cuddled with first and final subshell statements
18(cd foo &&
19bar) &&
2021
# LINT: same with missing "&&"
22(cd foo
23bar)