How can I get Merlin to warn me when I've incorrectly implemented a module interface defined in a .mli file?

68 views Asked by At

I have two files:

foo.ml

let foo = ()

foo.mli

val foo: int -> int

How can I get Merlin to warn me that I've incorrectly implemented the interface?

0

There are 0 answers