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
let () =
let delayed = ref (fun () -> ()) in
for i = 1 to 2 do
let rec f n = function
| 0 -> assert (i = n)
| j -> delayed :=
let prev = !delayed in
(fun () -> prev (); f (succ n + i - i) (pred j))
in f 0 i
done;
!delayed ();;
The following program raises but should not.
Fixed in js_of_ocaml by ocsigen/js_of_ocaml@90456a3