~~ lineWidth: 40 ~~
== should format ==
let a!: string;
const b = 5;
const c: number = 5;
var d = 5, e = 20;
let f = 2, g = 3, testingTheLimitOut = 4;
declare const t: string;

function test() {
    let f = 2, g = 3, testingTheLimitOut = 4;
}

[expect]
let a!: string;
const b = 5;
const c: number = 5;
var d = 5, e = 20;
let f = 2, g = 3,
    testingTheLimitOut = 4;
declare const t: string;

function test() {
    let f = 2, g = 3,
        testingTheLimitOut = 4;
}

== should not wrap within a variable declaration ==
const t: Testing, testingThis: outALittleBit;

[expect]
const t: Testing,
    testingThis: outALittleBit;
