blob: 257b5b5eed3a23a6549f3a6f2b5ea77a776ad7e9 [file] [log] [blame]
# LINT: first subshell statement cuddled with opening "("
(cd foo &&
bar
) &&
# LINT: same with missing "&&"
(cd foo
bar
) &&
# LINT: closing ")" cuddled with final subshell statement
(
cd foo &&
bar) &&
# LINT: "(" and ")" cuddled with first and final subshell statements
(cd foo &&
bar) &&
# LINT: same with missing "&&"
(cd foo
bar)