Don't let the trailing '*' of a lambda's explicitly-specified return
type be immediately adjacent to the left brace that starts the body
of the lambda.
Before: int *p = []() -> int *{ return nullptr; }();
After: int *p = []() -> int * { return nullptr; }();