xref: /freebsd/bin/sh/tests/builtins/break6.0 (revision a3c858005cae175e277f6f6735ca9eaea7eaf3c3)
1# Per POSIX, this need only work if LONG_MAX > 4294967295.
2
3while :; do
4	break 4294967296
5	echo bad
6	exit 3
7done
8