Sign in
◑
Theme
code
/
git
/
24e4e2ef8b25279d117b0bc29d5389cc9df5dbea
/
.
/
t
/
chainlint
/
arithmetic-expansion.test
blob: 7b4c5c9a4138541f569d2844559abe033f63cf50 [
file
]
test_expect_success
'arithmetic-expansion'
'
(
foo &&
# LINT: closing ")" of $((...)) not misinterpreted as subshell-closing ")"
bar=$((42 + 1)) &&
baz
) &&
(
# LINT: missing "&&" on $((...))
bar=$((42 + 1))
baz
)
'