summaryrefslogtreecommitdiff
path: root/t/chainlint/case-comment.expect
blob: 641c157b98c0af678b15fb2cc25645eac8650602 (plain)
1
2
3
4
5
6
7
8
9
10
11
(
	case "$x" in
	# found foo
	x) foo ;;
	# found other
	*)
		# treat it as bar
		bar
		;;
	esac
)