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

[expect]
interface Test
{
}

== should use the next line for type parameters on multiple lines ==
interface Test<
T, U,
V> {
}

[expect]
interface Test<
    T,
    U,
    V,
>
{
}

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

[expect]
interface Test
    extends SomethingReallyReallyLong
{
}
