diff options
Diffstat (limited to 't/chainlint/loop-in-if.test')
-rw-r--r-- | t/chainlint/loop-in-if.test | 15 |
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..dfcc3f9 --- /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 +) |