Sign in
code
/
git
/
431f6e67e620f1b4f9acfddd356b56a3fd5c5e79
/
.
/
t
/
chainlint
/
if-in-loop.test
blob: f0cf19cfadac8c1ae9d09a668bafc99517c50cdf [
file
] [
log
] [
blame
]
(
for
i
in
a b c
do
if
false
then
# LINT: missing "&&" on "echo"
echo
"err"
exit
1
# LINT: missing "&&" on "fi"
fi
foo
# LINT: missing "&&" on "done"
done
bar
)