clang-format version: 22.0.0git **Reproducer:** `clang-format --style=LLVM test.cpp` `test.cpp`: ```cpp bool foo{requires {0;}}; ``` **clang-format output:** ```cpp bool foo{requires {0; } } ; ``` **Expected behavior:** ```cpp bool foo{requires {0;}}; ``` **Environment:** ``` clang-format version 22.0.0git (https://github.com/llvm/llvm-project.git 779868de6975f6fd0ea17bb9a8e929037d3752d7) Windows 10 (22H2) 19045.6332 ```