c06336d428
POSIX does not allow constructs like: if cmd; then fi { } Add a colon dummy command, except in a test that verifies that such empty lists do not cause crashes when used as a function definition.
6 lines
50 B
Plaintext
6 lines
50 B
Plaintext
# $FreeBSD$
|
|
set -e
|
|
while false; false; do
|
|
:
|
|
done
|