summaryrefslogtreecommitdiff
path: root/t/chainlint/case-comment.expect
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/case-comment.expect')
-rw-r--r--t/chainlint/case-comment.expect11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/chainlint/case-comment.expect b/t/chainlint/case-comment.expect
new file mode 100644
index 0000000000..2442dd5f25
--- /dev/null
+++ b/t/chainlint/case-comment.expect
@@ -0,0 +1,11 @@
+2 (
+3 case "$x" in
+4 # found foo
+5 x) foo ;;
+6 # found other
+7 *)
+8 # treat it as bar
+9 bar
+10 ;;
+11 esac
+12 )