We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e512110 commit 7926f66Copy full SHA for 7926f66
CHANGES.md
@@ -16,6 +16,18 @@ profile. This started with version 0.26.0.
16
only use punning when it exists in the source.
17
This also applies to `let%ext` bindings (#2747, @WardBrian).
18
19
+- Support the unnamed functor parameters syntax in module types (#2755, @Julow)
20
+ ```ocaml
21
+ module type F = ARG -> S
22
+ ```
23
+ The following lines are now formatted as they are in the source file:
24
25
+ module M : (_ : S) -> (_ : S) -> S = N
26
+ module M : S -> S -> S = N
27
+ (* The preceding two lines are no longer turned into this: *)
28
+ module M : (_ : S) (_ : S) -> S = N
29
30
+
31
### Fixed
32
33
- Fix dropped comment in `(function _ -> x (* cmt *))` (#2739, @Julow)
0 commit comments