This is item 5 from my list of observations in #5418 (changes in compiler output from 9.1.4 to current master). On current master, ```rescript type t = { a: string, b: string, c: Belt.Set.String.t, } let empty = { a: "A", b: "B", c: Belt.Set.String.empty, } ``` compiles to ```js var empty_a = "A"; var empty_b = "B"; var empty = { a: empty_a, b: empty_b, c: undefined }; ``` whereas in 9.1.4, I get ```js var empty = { a: "A", b: "B", c: undefined }; ```