Open dannywillems opened 7 years ago
For the moment, we can have mutual dependent fields.
let module M = struct type t = Int.t let f = fun(x : Int.t) -> self.g x let g = fun(x : Int.t) -> self.f x end;;
Type annotations on fields can be used.
For the moment, we can have mutual dependent fields.