]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - tools/regression/bin/sh/execution/subshell2.0
MFC r245383,245392,247190,249220,251180,251797: New sh testcases.
[FreeBSD/stable/9.git] / tools / regression / bin / sh / execution / subshell2.0
1 # $FreeBSD$
2
3 f() {
4         x=2
5 }
6 (
7         x=1
8         f
9         [ "$x" = 2 ]
10 )