blob: 5c33560bc7ac685f2ee387a68d29ff2b1e3f4fa9 [file] [log] [blame]
f() { echo $1; }
f 1
f() ( echo $1; )
f 2
f() ( echo $1 )
f 3