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 4508576 commit f999aa4Copy full SHA for f999aa4
compiler/syntax/src/res_printer.ml
@@ -807,6 +807,10 @@ and print_mod_type ~state mod_type cmt_tbl =
807
Doc.concat [attrs; print_mod_type ~state mod_type cmt_tbl]
808
in
809
print_comments doc cmt_tbl cmt_loc
810
+ | [(attrs, {Location.txt = "*"; loc}, None)] ->
811
+ let attrs = print_attributes ~state attrs cmt_tbl in
812
+ let doc = Doc.concat [attrs; Doc.text "()"] in
813
+ print_comments doc cmt_tbl loc
814
| params ->
815
Doc.group
816
(Doc.concat
0 commit comments