subshell2.0   [plain text]


# $FreeBSD: head/bin/sh/tests/execution/subshell2.0 245383 2013-01-13 19:39:13Z jilles $

f() {
	x=2
}
(
	x=1
	f
	[ "$x" = 2 ]
)