Clang doesn't diagnose the following invalid code (with the trailing comma), it treats as valid code: ``` void func(int); void k() { func(1, ); } ``` This is a regression caused by https://github.com/llvm/llvm-project/pull/114684.