Merge branch 'tb/print-size-t-with-uintmax-format'
[git.git] / t / chainlint / nested-cuddled-subshell.test
blob8fd656c7b598acfb19f026f1368f75e980766f04
2 # LINT: opening "(" cuddled with first nested subshell statement
3         (cd foo &&
4                 bar
5         ) &&
7 # LINT: same but "&&" missing
8         (cd foo &&
9                 bar
10         )
12 # LINT: closing ")" cuddled with final nested subshell statement
13         (
14                 cd foo &&
15                 bar) &&
17 # LINT: same but "&&" missing
18         (
19                 cd foo &&
20                 bar)
22 # LINT: "(" and ")" cuddled with first and final subshell statements
23         (cd foo &&
24                 bar) &&
26 # LINT: same but "&&" missing
27         (cd foo &&
28                 bar)
30         foobar