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
We ideally want something like the opposite of make_checked, i.e. something that resets the global mutable state to an invalid value.
I have a feeling the internal state of Snarky can become invalid if you do run_checked (let* () = f in let* () = g () in ()) if g () makes use of the global mutable state. I might be wrong though.
The text was updated successfully, but these errors were encountered:
We ideally want something like the opposite of
make_checked
, i.e. something that resets the global mutable state to an invalid value.I have a feeling the internal state of Snarky can become invalid if you do
run_checked (let* () = f in let* () = g () in ())
ifg ()
makes use of the global mutable state. I might be wrong though.The text was updated successfully, but these errors were encountered: