Git fork
1test_expect_success 'nested-subshell-comment' '
2(
3 foo &&
4 (
5 bar &&
6# LINT: ")" in comment in nested subshell not misinterpreted as closing ")"
7 # bottles wobble while fiddles gobble
8 # minor numbers of cows (or do they?)
9 baz &&
10 snaff
11# LINT: missing "&&" on ")"
12 )
13 fuzzy
14)
15'