There should be no extra indent when wrapping only the expression used
as last argument. This is consistent with the behavior when the first
(and only) argument's expression is wrapped.
foo(a, bbbbbbbbbbbbbbbbbb + ccccccccccccccccc); foo(bbbbbbbbbbbbbbbbb + ccccccccccccccccc);
This does not affect all other cases, where the argument itself is
wrapped:
foo(a, bbbbbbbbbbbbbbbbb + ccccccccccccccccc, d); foo(bbbbbbbbbbbbbbbbb + ccccccccccccccccc, d);