What steps will reproduce the problem?
Example program:
-----------------------------------------------------------------------------
(* compile with:
ocamlfind ocamlc -package extlib -I +extlib -linkpkg -o dynarr_example \
dynarr_example.ml *)
let dynarr_example prefix =
let d = ref (DynArray.create ()) and n = 4100 in
for i = 0 to n do
Printf.printf "%d %d\n" i...
2009-06-12 00:21:31 UTC in OCaml ExtLib