~~ classExpression.bracePosition: nextLine, lineWidth: 50 ~~
== should use the next line for the brace position ==
const t = class {
};

[expect]
const t = class
{
};

== should use the next line for type parameters on multiple lines ==
const t = class<
    T,
U,
V> {
};

[expect]
const t = class<
    T,
    U,
    V
>
{
};

== should use the next line for the brace position when hanging ==
const t = class extends SomethingReallyReallyReallyLong
{
};

[expect]
const t = class
    extends SomethingReallyReallyReallyLong
{
};
