~~ tryStatement.bracePosition: nextLine, tryStatement.nextControlFlowPosition: nextLine, lineWidth: 40 ~~
== should use the next line for the brace position ==
try {
    test;
} catch {
    test;
} finally {
    test;
}

[expect]
try
{
    test;
}
catch
{
    test;
}
finally
{
    test;
}
