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