~~ interfaceDeclaration.bracePosition: sameLine, lineWidth: 40 ~~
== should use the same line for the brace position ==
interface Test
{
}

[expect]
interface Test {
}

== should use the same line for the brace position when hanging ==
interface Test extends SomethingReallyReallyLong {
}

[expect]
interface Test
    extends SomethingReallyReallyLong {
}
