]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/local7.0
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / local7.0
1 # $FreeBSD: head/bin/sh/tests/builtins/local7.0 294593 2016-01-22 20:10:08Z jilles $
2
3 f() {
4 local x
5 readonly x=2
6 }
7 unset x
8 f
9 x=4
10 [ "$x" = 4 ]