]> git.saurik.com Git - apple/shell_cmds.git/blame - sh/tests/builtins/local6.0
shell_cmds-203.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / local6.0
CommitLineData
deb63bfb
A
1# $FreeBSD: head/bin/sh/tests/builtins/local6.0 294582 2016-01-22 18:10:36Z jilles $
2
3f() {
4 local x
5 readonly x=2
6}
7x=3
8f
9x=4
10[ "$x" = 4 ]