~~ switchStatement.bracePosition: nextLine, lineWidth: 40, switchStatement.preferHanging: true ~~
== should use the next line for the brace position ==
switch (expr) {
}

[expect]
switch (expr)
{
}

== should use the next line for the brace position when hanging ==
switch (expr.testing.testing.testing.testing)
{
}

[expect]
switch (expr.testing.testing.testing
    .testing)
{
}
