errexit option not applied in interactive mode
An interactive shell should exit on the assignment error below:
set -e readonly i= for i in 1; do echo $i; done
Fixed in r4218
An interactive shell should exit on the assignment error below: