``` clang-format version 22.0.0 (/build/llvm-git/llvm-project cdd54ff927e0207a3e65bade576e3c2511112953) ``` test.c: ```c char data = 0b1000'0110; // Single quotation mark for better readability int main(void) { return 0; } ``` `clang-format test.c` results in: ``` char data = 0b1000'0110; // Single quotation mark for better readability int main(void) { // <= expectation: `int main...` return 0; } ``` according to https://github.com/clangd/clangd/issues/2485#issuecomment-3272087027, this is a regression in clang-format 20 compared to clang-format 19.