We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Document known differences between OCaml and Camlp4. Merlin will follow OCaml syntax.
# type t = ()
Accepted by ocaml. Rejected by camlp4.
"()" in an expression context is quite ambiguous after such definitions.
# let f x = f ~f:fun x -> x;;
Rejected by ocaml. Accepted by camlp4.
# type t = [variants];;