Merge branch 'ja/doc-synopsis-markup'
[git/gitster.git] / t / chainlint / arithmetic-expansion.test
blob7b4c5c9a4138541f569d2844559abe033f63cf50
1 test_expect_success 'arithmetic-expansion' '
3         foo &&
4 # LINT: closing ")" of $((...)) not misinterpreted as subshell-closing ")"
5         bar=$((42 + 1)) &&
6         baz
7 ) &&
9 # LINT: missing "&&" on $((...))
10         bar=$((42 + 1))
11         baz