let _ =
match c with
| {issuer = _; (* TODO *)
_
} -> ()
yields
let _ =
match c with
| {
issuer = _;
(* TODO *)
_;
} ->
()
where there is trailing whitespace in the empty line before the (* TODO *). The behaviour can be reproduced with an empty .ocamlformat. Tested on the branch of #2537.
yields
where there is trailing whitespace in the empty line before the
(* TODO *)
. The behaviour can be reproduced with an empty.ocamlformat
. Tested on the branch of #2537.