test_expect_success 'nested-subshell' '
(
cd foo &&
(
echo a &&
echo b
) >file &&
cd foo &&
(
echo a
echo b
) >file
)
'
test_expect_success 'nested-subshell' '
(
cd foo &&
(
echo a &&
echo b
) >file &&
cd foo &&
(
echo a
echo b
) >file
)
'