diff options
Diffstat (limited to 't/chainlint/nested-subshell-comment.test')
-rw-r--r-- | t/chainlint/nested-subshell-comment.test | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/t/chainlint/nested-subshell-comment.test b/t/chainlint/nested-subshell-comment.test new file mode 100644 index 0000000000..b430580ce0 --- /dev/null +++ b/t/chainlint/nested-subshell-comment.test @@ -0,0 +1,15 @@ +test_expect_success 'nested-subshell-comment' ' +( + foo && + ( + bar && +# LINT: ")" in comment in nested subshell not misinterpreted as closing ")" + # bottles wobble while fiddles gobble + # minor numbers of cows (or do they?) + baz && + snaff +# LINT: missing "&&" on ")" + ) + fuzzy +) +' |