When formatting `jscomp/test/coercion_module_alias_test.res`, ```rescript module M7: { module N': { let x: int } } = (M6: { module N: { let x: int } module N' = N }) ``` is reprinted to ```rescript module M7: { module N': { let x: int } } = M6: { module N: { let x: int } module N' = N } ``` which does not parse.