Describe the bug
If I write code with a multi-line comment like this, I'd expect ocamlformat to leave it split across lines.
let _ =
[ "x"
; "y"
(* first line
second line *)
; "z"
]
;;
Instead, ocamlformat produces this formatting:
let _ = [ "x"; "y" (* first line
second line *); "z" ]
How to Reproduce
Run with ocamlformat built from 953c48a and --profile=janestreet.