On current master: ```rescript type t = {a: int, b: int} let f = () => () => Some({a: 1, b: 2}) ``` compiles to ```js function f() { return () => { a: 1, b: 2 }; } ``` which is invalid. It would need to be ```js function f() { return () => ({ a: 1, b: 2 }); } ```