Raw
1 test_expect_success 'here-doc-multi-line-command-subst' '
2 (
3 # LINT: line contains here-doc and opens multi-line $(...)
4 x=$(bobble <<-\END &&
5 fossil
6 vegetable
7 END
8 wiffle)
9 echo $x
10 )
11 '