]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/parser/func2.0
shell_cmds-198.tar.gz
[apple/shell_cmds.git] / sh / tests / parser / func2.0
1 # $FreeBSD$
2
3 f() { return 42; }
4 f() { return 3; } &
5 f
6 [ $? -eq 42 ]