We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
On current master:
type t = {a: int, b: int} let f = () => () => Some({a: 1, b: 2})
compiles to
function f() { return () => { a: 1, b: 2 }; }
which is invalid. It would need to be
function f() { return () => ({ a: 1, b: 2 }); }