blob: 3f31ae901035496343592531b5bc22a61c919a05 [file] [log] [blame]
test_expect_success 'case-comment' '
(
case "$x" in
# found foo
x) foo ;;
# found other
*)
# treat it as bar
bar
;;
esac
)
'