ocaml-modular-implicits icon indicating copy to clipboard operation
ocaml-modular-implicits copied to clipboard

OCaml extended with modular implicits

Results 33 ocaml-modular-implicits issues
Sort by recently updated
recently updated
newest added

``` # module F(X : sig module type T end) = struct let f (implicit Y:X.T) () = () let _ = f () end ;; Fatal error: exception File...

``` # class c (implicit M:S) = object end;; Fatal error: exception File "typing/btype.ml", line 571, characters 33-39: Assertion failed ```

enhancement

I was curious to try this version of the compiler. Unfortunately, I am getting the following error when I try to compile it: ``` prims.h:29:23: error: too many arguments to...