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

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

== should maintain the position for the brace position when on the next line ==
try
{
    test;
} catch
{
    test;
} finally
{
    test;
}

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