1test_expect_success 'command-substitution' ' 2( 3 foo && 4# LINT: closing ")" of $(...) not misinterpreted as subshell-closing ")" 5 bar=$(gobble) && 6 baz 7) && 8( 9# LINT: missing "&&" on $(...) 10 bar=$(gobble blocks) 11 baz 12) 13'