xref: /freebsd-13-stable/bin/sh/tests/builtins/break5.4 (revision 023fc80ee38a117fa65b2ccb2abf8bdc7dbd6fd9)
1
2# Although this is not specified by POSIX, some configure scripts (gawk 4.1.0)
3# appear to depend on it.
4# In some uncommitted code, the subshell environment corrupted the outer
5# shell environment's state.
6
7(for i in a b c; do
8	exit 3
9done)
10break
11exit 4
12