summaryrefslogtreecommitdiff
path: root/t/chainlint/while-loop.expect
blob: 13cff2c0a511c6f81171f667a63632b78d387bad (plain)
1
2
3
4
5
6
7
8
9
10
11
(
	while true
	do
?!AMP?!		echo foo
		cat
?!AMP?!	done
	while true; do
		echo foo &&
		cat bar
	done
>)