]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/break3.0
10a5ca88edff5df310a9c7b0cf4c4816435c12ba
[apple/shell_cmds.git] / sh / tests / builtins / break3.0
1 # $FreeBSD$
2
3 # We accept this and people might rely on it.
4 # However, various other shells do not accept it.
5
6 f() {
7 break
8 echo bad1
9 }
10
11 while :; do
12 f
13 echo bad2
14 exit 2
15 done