Serde fails to parse this JSON object correctly: ```json { "x": [ { "name": "max" } ] } ``` with the following type definitions: ```ocaml type a = { name : string } [@@deriving deserialize, serialize,] type t = { x : a list } [@@deriving deserialize, serialize,] ``` error message: ```shell Fatal error: exception Yojson__Common.Json_error("Line 6, bytes 5-12:\nExpected ',' but found '\n ]\n}\n'") ``` I have created a reproduction repo here: https://github.com/maxrn/serde_list_repro