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
{{ message }}
This repository was archived by the owner on Apr 25, 2025. It is now read-only.
return_call and related instructions from the tail-call proposal (now phase 4) unwind the current frame before calling the target. So if the return_call is enclosed by a try block, I expect that any exception thrown by the callee cannot be caught by the try block:
tryreturn_call$fncatch_all;; Unreachable, this frame is gone so the exception is "rethrown" to the caller.end
Does this match everyone's expectations? Should we add some spec text and tests to cover this case? Are there other ambiguous cases with tail-call+EH?