1
0
Fork 0
git/t/chainlint/if-in-loop.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
162 B
Text

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 )