~~ switchCase.bracePosition: maintain, lineWidth: 40 ~~
== should maintain the brace position ==
switch (test) {
    case 5: {
        5;
    }
    case 6:
    {
        6;
    }
}

[expect]
switch (test) {
    case 5: {
        5;
    }
    case 6:
    {
        6;
    }
}
