]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/local2.0
ed78d931bad9a8610c29a93d656b955ccffe8ffe
[apple/shell_cmds.git] / sh / tests / builtins / local2.0
1 # $FreeBSD: head/bin/sh/tests/builtins/local2.0 251797 2013-06-15 22:22:03Z jilles $
2
3 f() {
4 local -
5 set -a
6 case $- in
7 *a*) : ;;
8 *) echo In-function \$- bad
9 esac
10 }
11 case $- in
12 *a*) echo Initial \$- bad
13 esac
14 f
15 case $- in
16 *a*) echo Final \$- bad
17 esac