Newer
Older
UbixOS / bin / sh / tests / parser / case2.0
@Charlie Root Charlie Root on 16 Jan 2018 419 bytes BSD Shell
# $FreeBSD: releng/11.1/bin/sh/tests/parser/case2.0 207824 2010-05-09 17:10:50Z jilles $

# Pretty much only ash derivatives can parse all of this.

f1() {
	x=$(case x in
		(x|esac) ;;
		(*) echo bad >&2 ;;
	esac)
}
f1
f2() {
	x=$(case x in
		(x|esac) ;;
		(*) echo bad >&2
	esac)
}
f2
f3() {
	x=$(case x in
		x|esac) ;;
		*) echo bad >&2 ;;
	esac)
}
f3
f4() {
	x=$(case x in
		x|esac) ;;
		*) echo bad >&2
	esac)
}
f4