xref: /freebsd/bin/sh/tests/execution/subshell2.0 (revision be771a7b7f4580a30d99e41a5bb1b93a385a119d)
1
2f() {
3	x=2
4}
5(
6	x=1
7	f
8	[ "$x" = 2 ]
9)
10