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