git/t/chainlint/case-comment.expect

12 lines
98 B
Plaintext

(
case "$x" in
# found foo
x) foo ;;
# found other
*)
# treat it as bar
bar
;;
esac
)