== should print members ==
interface Test { // test
    // other
    prop: string;

    /** testing */
    method(): void;

    otherProp: string;
    // other
}

[expect]
interface Test { // test
    // other
    prop: string;

    /** testing */
    method(): void;

    otherProp: string;
    // other
}

== should inner comments ==
interface Test {
    // testing

    /* testing */ // 1
    // test
}

[expect]
interface Test {
    // testing

    /* testing */
    // 1
    // test
}
