~~ classDeclaration.bracePosition: maintain, lineWidth: 40 ~~
== should maintain the position for the brace position when on same line ==
class Test {
    static {
    }
}

[expect]
class Test {
    static {
    }
}

== should maintain the position for the brace position when on a new line (skip) ==
class Test {
    static
    {
    }
}

[expect]
class Test {
    static
    {
    }
}
