If a static assert has a message as the right side of an and condition, suggest a fix it of replacing the '&&' to ','.
static_assert(cond && "Failed Cond") -> static_assert(cond, "Failed cond")
This use case comes up when lazily replacing asserts with static asserts.
I'll undo this, clangd include inserter and clang format making undesired changes