about summary refs log tree commit diff
path: root/third_party/git/t/chainlint/multi-line-nested-command-substitution.test
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/chainlint/multi-line-nested-command-substitution.test')
-rw-r--r--third_party/git/t/chainlint/multi-line-nested-command-substitution.test18
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/git/t/chainlint/multi-line-nested-command-substitution.test b/third_party/git/t/chainlint/multi-line-nested-command-substitution.test
new file mode 100644
index 0000000000..300058341b
--- /dev/null
+++ b/third_party/git/t/chainlint/multi-line-nested-command-substitution.test
@@ -0,0 +1,18 @@
+(
+	foo &&
+	x=$(
+		echo bar |
+		cat
+	) &&
+	echo ok
+) |
+sort &&
+(
+	bar &&
+	x=$(echo bar |
+		cat
+	) &&
+	y=$(echo baz |
+		fip) &&
+	echo fail
+)