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

[expect]
enum Test {
}

== should maintain the position for the brace position when on a new line ==
enum Test
{
}

[expect]
enum Test
{
}
