https://bugs.llvm.org/show_bug.cgi?id=46254
In ‘clang-format’, when using "BreakBeforeBraces: Whitesmiths".
In a ‘switch’ block, the ‘default’ case is always missing and indentation level. See below.
switch(x) { case 0: { foo(x + 1); } break; case 1: { goo(x % 42); } break; default: { printf("the default case"); } break; }