about summary refs log tree commit diff
path: root/third_party/git/t/chainlint/arithmetic-expansion.test
(
	foo &&
# LINT: closing ")" of $((...)) not misinterpreted as subshell-closing ")"
	bar=$((42 + 1)) &&
	baz
) &&
(
# LINT: missing "&&" on $((...))
	bar=$((42 + 1))
	baz
)