diff options
Diffstat (limited to 't/chainlint/command-substitution.expect')
-rw-r--r-- | t/chainlint/command-substitution.expect | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/chainlint/command-substitution.expect b/t/chainlint/command-substitution.expect new file mode 100644 index 0000000000..73809fd585 --- /dev/null +++ b/t/chainlint/command-substitution.expect @@ -0,0 +1,9 @@ +2 ( +3 foo && +4 bar=$(gobble) && +5 baz +6 ) && +7 ( +8 bar=$(gobble blocks) ?!LINT: missing '&&'?! +9 baz +10 ) |