about summary refs log tree commit diff
path: root/third_party/git/t/chainlint/loop-in-if.test
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/chainlint/loop-in-if.test')
-rw-r--r--third_party/git/t/chainlint/loop-in-if.test15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/git/t/chainlint/loop-in-if.test b/third_party/git/t/chainlint/loop-in-if.test
new file mode 100644
index 0000000000..93e8ba8e4d
--- /dev/null
+++ b/third_party/git/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
+)