```c++ int A = 1, B = 2; int main() { A * B; return 0; } ``` In the snippet above clang-format would reformat the `A * B` expression as `A *B`, which visually implies a pointer declaration. See the example on [godbolt](https://godbolt.org/z/7WKxhro1W).