1# A redirection error on a subshell should not abort the shell.
2exec 2>/dev/null
3( echo bad ) </var/empty/x
4exit 0
5