Welcome to mirror list, hosted at ThFree Co, Russian Federation.

arithmetic-expansion.test « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16206960d8b0fe6fac0511d1929d86b8a2dd8198 (plain)
1
2
3
4
5
6
7
8
9
10
11
(
	foo &&
# LINT: closing ")" of $((...)) not misinterpreted as subshell-closing ")"
	bar=$((42 + 1)) &&
	baz
) &&
(
# LINT: missing "&&" on $((...))
	bar=$((42 + 1))
	baz
)