readability-identifier-naming causes a null pointer dereference when checking an identifier introduced by a structured binding whose right hand side is an undeclared identifier.
Running the check on a file that is just the following results in a crash:
auto [left] = right;
We are risky of dereferencing a nullptr, as the TypePtr can be null now.