Version: `11.0.0-rc.6` Create a file `Foo.res` with the following content: ```res @unboxed type href = String(string) | Number(int) // This works let href = Number(1); /** This doesn't compile. Fatal error: exception File "jscomp/core/js_dump.ml", line 828, characters 29-35: Assertion failed FAILED: cannot make progress due to previous errors. */ let href2 = String("test"); ``` **Some observations:** - The issue doesn't appear to be coupled to `String()`. If I define a type `Number(int) | Object({foo: string})`, the same issue is observed - The example above will actually [compile correctly in the playground](https://rescript-lang.org/try?version=v11.0.0-rc.6&code=AIVwdgRg9gHgpgEwFABcCeAHOACAFgJzgDNsBebAZRXwEswBzACgGdq76BKbAH2wDkQAWwhx8jOig5IkAehnYAKrhrNsAdyj4A1syQAbOCjyES5AcNGMAjBwDc0mQCpHSJSuwIocZmADkKADppADEAQxRQvWxRfE0ALmiYAGM4DBQaKDBsYJoDbAAiACtmJKhBDBlSwhligH0EIQwAwT18gBpsPTocAA4AJh6OpNxQ-FCklFFVPoBOAFoAZgBWBIBBZmZRdMzsIlDcxCRg1YBJABkAUQARBKTQsDAoI0FQrRwMWPpCDY8QHBQoNgPnAAG4ZECqGKaZhBRwyfSGYzEPpkShsBiMfKTVj5OxAA).