This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Description
With refmt (Reason 3.3.9 @ 9914cc69)
The code:
let a =
<div>
{
let name = "joseph";
<span> {ReasonReact.string(name)} </span>;
}
</div>;
is transformed to
let a = <div> {let name = "joseph"
<span> {ReasonReact.string(name)} </span>} </div>;
The semicolon after "joseph" is remove by refmt, and the code no longer compiles.
It's a regression bug.