tvl-depot/third_party/git/t/chainlint/loop-in-if.test

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
179 B
Text
Raw Normal View History

(
if true
then
while true
do
# LINT: missing "&&" on 'echo'
echo "pop"
echo "glup"
# LINT: missing "&&" on 'done'
done
foo
# LINT: missing "&&" on 'fi'
fi
bar
)