Merge branch 'tb/print-size-t-with-uintmax-format'
[git.git] / t / chainlint / cuddled.test
blob0499fa4180596cc4f8c054a7e2a8a640bdb679ce
1 # LINT: first subshell statement cuddled with opening "("; for implementation
2 # LINT: simplicity, "(..." is split into two lines, "(" and "..."
3 (cd foo &&
4         bar
5 ) &&
7 # LINT: same with missing "&&"
8 (cd foo
9         bar
10 ) &&
12 # LINT: closing ")" cuddled with final subshell statement
14         cd foo &&
15         bar) &&
17 # LINT: "(" and ")" cuddled with first and final subshell statements
18 (cd foo &&
19         bar) &&
21 # LINT: same with missing "&&"
22 (cd foo
23         bar)