summaryrefslogtreecommitdiffstats
path: root/t/chainlint/loop-in-if.expect
blob: 32e076ad1be59bc6aa86df58cbeed101545e1a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
2 (
3 	if true
4 	then
5 		while true
6 		do
7 			echo "pop" ?!LINT: missing '&&'?!
8 			echo "glup" ?!LINT: missing '|| exit 1'?!
9 		done ?!LINT: missing '&&'?!
10 		foo
11 	fi ?!LINT: missing '&&'?!
12 	bar
13 )