t / chainlint / nested-subshell-comment.teston commit Merge tag 'v2.23.0-rc2' of git://git.kernel.org/pub/scm/git/git (d6d5cbf)
   1(
   2        foo &&
   3        (
   4                bar &&
   5# LINT: ")" in comment in nested subshell not misinterpreted as closing ")"
   6                # bottles wobble while fiddles gobble
   7                # minor numbers of cows (or do they?)
   8                baz &&
   9                snaff
  10# LINT: missing "&&" on ')'
  11        )
  12        fuzzy
  13)