summaryrefslogtreecommitdiff
path: root/t/chainlint/loop-in-if.test
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/loop-in-if.test')
-rw-r--r--t/chainlint/loop-in-if.test15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/chainlint/loop-in-if.test b/t/chainlint/loop-in-if.test
new file mode 100644
index 0000000..93e8ba8
--- /dev/null
+++ b/t/chainlint/loop-in-if.test
@@ -0,0 +1,15 @@
+(
+ if true
+ then
+ while true
+ do
+# LINT: missing "&&" on 'echo'
+ echo "pop"
+ echo "glup"
+# LINT: missing "&&" on 'done'
+ done
+ foo
+# LINT: missing "&&" on 'fi'
+ fi
+ bar
+)