Pre-release version `1.5.11`. ```res type foo = { a: int, b: bool, } let bar = () => ({a: 0, b: true}, "123") let ({a, b}, _) = bar() ```  To me, this incorrectly suggests `{a, b}` has type `int`.