xref: /freebsd/bin/sh/tests/builtins/break1.0 (revision 641efdd10cc3ad05fb7eaeeae20b15c5ad4128c8)
1
2if [ "$1" != nested ]; then
3	while :; do
4		set -- nested
5		. "$0"
6		echo bad2
7		exit 2
8	done
9	exit 0
10fi
11# To trigger the bug, the following commands must be at the top level,
12# with newlines in between.
13break
14echo bad1
15exit 1
16