Skip to content

Commit f83b4d1

Browse files
committed
[examples][dune] fix use_values_no_intf.ml
It was referencing a value from `Values` instead of `Values_no_intf`. This value is not included in the results because it is used too often to be reported with the tested thresholds.
1 parent f46606d commit f83b4d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/using_dune/bin/use_unwrapped_lib/use_values_no_intf.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ let () =
33
let _ = Values_no_intf.used_int in
44
Values_no_intf.used_fun ();
55
Values_no_intf.used_alias_fun ();
6-
let _closure = Values.partially_used_fun () in
6+
let _closure = Values_no_intf.partially_used_fun () in
77
let ((), ()) = Values_no_intf.used_closure () () in
88
Values_no_intf._used_underscore_fun ()
99

0 commit comments

Comments
 (0)