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

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