Fixes https://github.com/llvm/llvm-project/issues/52772.
This patch fixes the formatting of the code:
auto aaaaaaaaaaaaaaaaaaaaa = {}; auto b = g([] { return; });
which should be left as is, but before this patch was formatted to:
auto aaaaaaaaaaaaaaaaaaaaa = {}; auto b = g([] { return; });
This test case still fails, but I'm inclined to keep it commented for the moment and fix it later.