1(
2# LINT: missing "&&" in block not currently detected (for consistency with
3# LINT: --chain-lint at top level and to provide escape hatch if needed)
4foo &&
5{
6echo a
7echo b
8} &&
9bar &&
10# LINT: missing "&&" at closing "}"
11{
12echo c
13}
14baz
15)