Here's a piece of code to reproduce: ``` let a = None; let thing = switch (a) { | None => "error" | Some(fahrenheit) => "Unreasonably long string string string stringgggggggggggggg" }; ``` Expected: ``` let a = None; let thing = switch (a) { | None => "error" | Some(fahrenheit) => "Unreasonably long string string string stringgggggggggggggg" }; ``` [Melange playground link](https://melange.re/v2.0.0/playground/?language=Reason&code=bGV0IGEgPSBOb25lOwpsZXQgdGhpbmcgPQogIHN3aXRjaCAoYSkgewogIHwgTm9uZSA9PiAiZXJyb3IiCiAgfCBTb21lKGZhaHJlbmhlaXQpID0%2BICJVbnJlYXNvbmFibHkgbG9uZyBzdHJpbmcgc3RyaW5nIHN0cmluZyBzdHJpbmdnZ2dnZ2dnZ2dnZ2dnZyIKICB9Owo%3D&live=off)