1
0
Fork 0
git/t/chainlint/loop-in-if.expect
Daniel Baumann 54102a2c29
Adding upstream version 1:2.47.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:43:39 +02:00

12 lines
215 B
Text

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 )