You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type 'a t = {
default: 'a;
mutable table: 'a array;
(* invariant: the length of the array [table] is nonzero *)
}
let make n x =
assert (n > 0);
let default = x
and table = Array.make n x in
{ default; table }
This happens with and without a matching .mli file.
The text was updated successfully, but these errors were encountered:
Opening the following
.ml
file with Cameleer causes this error message to be displayed:The code is as follows:
This happens with and without a matching
.mli
file.The text was updated successfully, but these errors were encountered: