Skip to content

Commit 5340041

Browse files
committed
[docs][methods][12/n] add factory example and limitation
This shows that analyzing objects produced by factory functions is the same as considering the function as its resulting object.
1 parent 10bf4d7 commit 5340041

File tree

18 files changed

+475
-16
lines changed

18 files changed

+475
-16
lines changed

check/classic/classic.exp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,13 @@
2525
./examples/docs/exported_values/hello_world/hello_world_with_intf.mli:3: goodbye
2626
./examples/docs/exported_values/hello_world/hello_world_with_intf.mli:4: world
2727

28+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory
29+
2830
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj
2931

32+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding
33+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory
34+
3035
./examples/using_dune/preprocessed_lib/preprocessed.mli:1: unused
3136
./examples/using_dune/preprocessed_lib/preprocessed.mli:3: internally_used
3237
./examples/using_dune/preprocessed_lib/preprocessed.mli:38: internally_used_f
@@ -156,13 +161,19 @@ Nothing else to report in this section
156161
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:2: unused_class#unused_method
157162
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#reset
158163

164+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory#unused_method
165+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#reset
166+
159167
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj#unused_method
160168
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#reset
161169

162170
./examples/docs/methods/code_constructs/inheritance/inheritance_lib.mli:2: parent#unused
163171

164172
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#unused
165173

174+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding#m
175+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory#m
176+
166177
./examples/using_dune/preprocessed_lib/preprocessed.mli:6: immediate#unused
167178
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:12: immediate#unused
168179

@@ -588,6 +599,9 @@ Nothing else to report in this section
588599

589600
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.ml:9: unit pattern x
590601

602+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:3: let x = ... in x (=> useless binding)
603+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:12: let x = ... in x (=> useless binding)
604+
591605
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: let () = ... in ... (=> use sequence)
592606
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: unit pattern unit_binding
593607
./examples/using_dune/preprocessed_lib/preprocessed.ml:84: val f: ... -> (... -> ?_:_ -> ...) -> ...

check/classic/classic.ref

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,13 @@
3030
./examples/docs/exported_values/limitations/incl_same_name/oo.mli:40: new_method: Should not be detected
3131
./examples/docs/exported_values/limitations/incl_same_name/oo.mli:41: public_method_label: Should not be detected
3232
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.mli:10: I.x: Should not be detected
33+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory
34+
3335
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj
3436

37+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding
38+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory
39+
3540
./examples/using_dune/preprocessed_lib/preprocessed.mli:1: unused
3641
./examples/using_dune/preprocessed_lib/preprocessed.mli:3: internally_used
3742
./examples/using_dune/preprocessed_lib/preprocessed.mli:38: internally_used_f
@@ -161,13 +166,19 @@ Nothing else to report in this section
161166
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:2: unused_class#unused_method
162167
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#reset
163168

169+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory#unused_method
170+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#reset
171+
164172
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj#unused_method
165173
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#reset
166174

167175
./examples/docs/methods/code_constructs/inheritance/inheritance_lib.mli:2: parent#unused
168176

169177
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#unused
170178
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#used_by_alias: Should not be detected
179+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding#m: Not detected
180+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory#m
181+
171182
./examples/using_dune/preprocessed_lib/preprocessed.mli:6: immediate#unused
172183
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:12: immediate#unused
173184

@@ -593,6 +604,9 @@ Nothing else to report in this section
593604

594605
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.ml:9: unit pattern x
595606

607+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:3: let x = ... in x (=> useless binding)
608+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:12: let x = ... in x (=> useless binding)
609+
596610
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: let () = ... in ... (=> use sequence)
597611
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: unit pattern unit_binding
598612
./examples/using_dune/preprocessed_lib/preprocessed.ml:84: val f: ... -> (... -> ?_:_ -> ...) -> ...
@@ -640,7 +654,7 @@ Nothing else to report in this section
640654
--------------------------------------------------------------------------------
641655

642656

643-
Total: 547
644-
Success: 541
645-
Failed: 6
646-
Ratio: 98.9031078611%
657+
Total: 556
658+
Success: 549
659+
Failed: 7
660+
Ratio: 98.7410071942%

check/internal/internal.exp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,13 @@
1515

1616
./examples/docs/exported_values/code_constructs/module/module_lib.mli:6: M.unused
1717

18+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory
19+
1820
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj
1921

22+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding
23+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory
24+
2025
./examples/using_dune/preprocessed_lib/preprocessed.mli:1: unused
2126
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:2: unused
2227

@@ -111,13 +116,19 @@ Nothing else to report in this section
111116
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:2: unused_class#unused_method
112117
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#reset
113118

119+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory#unused_method
120+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#reset
121+
114122
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj#unused_method
115123
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#reset
116124

117125
./examples/docs/methods/code_constructs/inheritance/inheritance_lib.mli:2: parent#unused
118126

119127
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#unused
120128

129+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding#m
130+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory#m
131+
121132
./examples/using_dune/preprocessed_lib/preprocessed.mli:6: immediate#unused
122133
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:12: immediate#unused
123134

@@ -543,6 +554,9 @@ Nothing else to report in this section
543554

544555
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.ml:9: unit pattern x
545556

557+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:3: let x = ... in x (=> useless binding)
558+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:12: let x = ... in x (=> useless binding)
559+
546560
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: let () = ... in ... (=> use sequence)
547561
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: unit pattern unit_binding
548562
./examples/using_dune/preprocessed_lib/preprocessed.ml:84: val f: ... -> (... -> ?_:_ -> ...) -> ...

check/internal/internal.ref

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,13 @@
2020
./examples/docs/exported_values/limitations/incl_same_name/oo.mli:40: new_method: Should not be detected
2121
./examples/docs/exported_values/limitations/incl_same_name/oo.mli:41: public_method_label: Should not be detected
2222
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.mli:10: I.x: Should not be detected
23+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory
24+
2325
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj
2426

27+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding
28+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory
29+
2530
./examples/using_dune/preprocessed_lib/preprocessed.mli:1: unused
2631
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:2: unused
2732

@@ -116,13 +121,19 @@ Nothing else to report in this section
116121
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:2: unused_class#unused_method
117122
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#reset
118123

124+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory#unused_method
125+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#reset
126+
119127
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj#unused_method
120128
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#reset
121129

122130
./examples/docs/methods/code_constructs/inheritance/inheritance_lib.mli:2: parent#unused
123131

124132
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#unused
125133
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#used_by_alias: Should not be detected
134+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding#m: Not detected
135+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory#m
136+
126137
./examples/using_dune/preprocessed_lib/preprocessed.mli:6: immediate#unused
127138
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:12: immediate#unused
128139

@@ -548,6 +559,9 @@ Nothing else to report in this section
548559

549560
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.ml:9: unit pattern x
550561

562+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:3: let x = ... in x (=> useless binding)
563+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:12: let x = ... in x (=> useless binding)
564+
551565
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: let () = ... in ... (=> use sequence)
552566
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: unit pattern unit_binding
553567
./examples/using_dune/preprocessed_lib/preprocessed.ml:84: val f: ... -> (... -> ?_:_ -> ...) -> ...
@@ -595,7 +609,7 @@ Nothing else to report in this section
595609
--------------------------------------------------------------------------------
596610

597611

598-
Total: 505
599-
Success: 499
600-
Failed: 6
601-
Ratio: 98.8118811881%
612+
Total: 514
613+
Success: 507
614+
Failed: 7
615+
Ratio: 98.6381322957%

check/threshold-1/threshold-1.exp

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,13 @@
1515

1616
./examples/docs/exported_values/code_constructs/module/module_lib.mli:6: M.unused
1717

18+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory
19+
1820
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj
1921

22+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding
23+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory
24+
2025
./examples/using_dune/preprocessed_lib/preprocessed.mli:1: unused
2126
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:2: unused
2227

@@ -146,6 +151,9 @@
146151
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:6: push_n_times
147152
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:12: clear_stack
148153

154+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:6: push_n_times
155+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:11: clear_stack
156+
149157
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:6: push_n_times
150158
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:12: clear_stack
151159

@@ -367,13 +375,19 @@ Nothing else to report in this section
367375
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:2: unused_class#unused_method
368376
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#reset
369377

378+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory#unused_method
379+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#reset
380+
370381
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj#unused_method
371382
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#reset
372383

373384
./examples/docs/methods/code_constructs/inheritance/inheritance_lib.mli:2: parent#unused
374385

375386
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#unused
376387

388+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding#m
389+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory#m
390+
377391
./examples/using_dune/preprocessed_lib/preprocessed.mli:6: immediate#unused
378392
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:12: immediate#unused
379393

@@ -444,6 +458,11 @@ Nothing else to report in this section
444458
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#pop
445459
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#push
446460

461+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#is_empty
462+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#peek
463+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#pop
464+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#push
465+
447466
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#peek
448467
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#pop
449468
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#push
@@ -959,6 +978,9 @@ Nothing else to report in this section
959978

960979
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.ml:9: unit pattern x
961980

981+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:3: let x = ... in x (=> useless binding)
982+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:12: let x = ... in x (=> useless binding)
983+
962984
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: let () = ... in ... (=> use sequence)
963985
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: unit pattern unit_binding
964986
./examples/using_dune/preprocessed_lib/preprocessed.ml:84: val f: ... -> (... -> ?_:_ -> ...) -> ...

check/threshold-1/threshold-1.ref

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,13 @@
2020
./examples/docs/exported_values/limitations/incl_same_name/oo.mli:40: new_method: Should not be detected
2121
./examples/docs/exported_values/limitations/incl_same_name/oo.mli:41: public_method_label: Should not be detected
2222
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.mli:10: I.x: Should not be detected
23+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory
24+
2325
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj
2426

27+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding
28+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory
29+
2530
./examples/using_dune/preprocessed_lib/preprocessed.mli:1: unused
2631
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:2: unused
2732

@@ -151,6 +156,9 @@
151156
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:6: push_n_times
152157
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:12: clear_stack
153158

159+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:6: push_n_times
160+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:11: clear_stack
161+
154162
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:6: push_n_times
155163
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:12: clear_stack
156164

@@ -372,13 +380,19 @@ Nothing else to report in this section
372380
./examples/docs/methods/code_constructs/constructor/constructor_bin.ml:2: unused_class#unused_method
373381
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#reset
374382

383+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_bin.ml:2: unused_factory#unused_method
384+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#reset
385+
375386
./examples/docs/methods/code_constructs/imm_obj/imm_obj_bin.ml:2: unused_obj#unused_method
376387
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#reset
377388

378389
./examples/docs/methods/code_constructs/inheritance/inheritance_lib.mli:2: parent#unused
379390

380391
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#unused
381392
./examples/docs/methods/limitations/alias/alias_lib.mli:2: original#used_by_alias: Should not be detected
393+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:2: factory_with_intermediate_binding#m: Not detected
394+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:8: random_factory#m
395+
382396
./examples/using_dune/preprocessed_lib/preprocessed.mli:6: immediate#unused
383397
./examples/using_dune/preprocessed_lib/preprocessed_no_intf.ml:12: immediate#unused
384398

@@ -449,6 +463,11 @@ Nothing else to report in this section
449463
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#pop
450464
./examples/docs/methods/code_constructs/constructor/constructor_lib.mli:10: int_stack#push
451465

466+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#is_empty
467+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#peek
468+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#pop
469+
./examples/docs/methods/code_constructs/factory_fun/factory_fun_lib.mli:2: get_stack#push
470+
452471
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#peek
453472
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#pop
454473
./examples/docs/methods/code_constructs/imm_obj/imm_obj_lib.mli:8: int_stack#push
@@ -963,6 +982,9 @@ Nothing else to report in this section
963982

964983
./examples/docs/exported_values/limitations/sigincl/sigincl_lib.ml:9: unit pattern x
965984

985+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:3: let x = ... in x (=> useless binding)
986+
./examples/docs/methods/limitations/factory_fun_indir/factory_fun_indir.ml:12: let x = ... in x (=> useless binding)
987+
966988
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: let () = ... in ... (=> use sequence)
967989
./examples/using_dune/preprocessed_lib/preprocessed.ml:83: unit pattern unit_binding
968990
./examples/using_dune/preprocessed_lib/preprocessed.ml:84: val f: ... -> (... -> ?_:_ -> ...) -> ...
@@ -1010,7 +1032,7 @@ Nothing else to report in this section
10101032
--------------------------------------------------------------------------------
10111033

10121034

1013-
Total: 862
1014-
Success: 855
1015-
Failed: 7
1016-
Ratio: 99.1879350348%
1035+
Total: 877
1036+
Success: 869
1037+
Failed: 8
1038+
Ratio: 99.0877993158%

0 commit comments

Comments
 (0)