summaryrefslogtreecommitdiff
path: root/t/chainlint/if-in-loop.expect
blob: 03b82a3e58c21e1300befb317f19c7f063fba3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(
	for i in a b c
	do
		if false
		then
			echo "err" ?!AMP?!
			exit 1
		fi ?!AMP?!
		foo
	done ?!AMP?!
	bar
)