1*b1abb130SPeter Avalos# $FreeBSD: head/tools/regression/bin/sh/builtins/local2.0 251797 2013-06-15 22:22:03Z jilles $ 2*b1abb130SPeter Avalos 3*b1abb130SPeter Avalosf() { 4*b1abb130SPeter Avalos local - 5*b1abb130SPeter Avalos set -a 6*b1abb130SPeter Avalos case $- in 7*b1abb130SPeter Avalos *a*) : ;; 8*b1abb130SPeter Avalos *) echo In-function \$- bad 9*b1abb130SPeter Avalos esac 10*b1abb130SPeter Avalos} 11*b1abb130SPeter Avaloscase $- in 12*b1abb130SPeter Avalos*a*) echo Initial \$- bad 13*b1abb130SPeter Avalosesac 14*b1abb130SPeter Avalosf 15*b1abb130SPeter Avaloscase $- in 16*b1abb130SPeter Avalos*a*) echo Final \$- bad 17*b1abb130SPeter Avalosesac 18