about summary refs log tree commit diff
path: root/third_party/git/t/chainlint/loop-in-if.test
(
	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
)