summary refs log tree commit diff
path: root/bin/1sh/tests/builtins/local6.0
blob: 1f31be323ad1cbf4a3ed2bcf4192dd4ea0995061 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# $FreeBSD: releng/12.1/bin/sh/tests/builtins/local6.0 294582 2016-01-22 18:10:36Z jilles $

f() {
	local x
	readonly x=2
}
x=3
f
x=4
[ "$x" = 4 ]