Sign in
code
/
git
/
32bff3675e6b4dc5ae93f0777e5da709f6576275
/
.
/
t
/
chainlint
/
if-in-loop.test
blob: 90c23976feccdd3f3851a39cf7b12cb5f643f628 [
file
] [
log
] [
blame
]
(
for
i
in
a b c
do
if
false
then
# LINT: missing "&&" on "echo" okay since "exit 1" signals error explicitly
echo
"err"
exit
1
# LINT: missing "&&" on "fi"
fi
foo
# LINT: missing "&&" on "done"
done
bar
)