~~ forInStatement.spaceAfterForKeyword: false ~~
== should print ==
for (const t    in   test) {
    a;
    b;
}

[expect]
for(const t in test) {
    a;
    b;
}
