-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
defer/finally block with caught exception exits current runops loop #23064
Comments
Reduced demonstration case: #!/usr/bin/env perl
use v5.40;
use experimental 'defer';
for my $id ( 0 .. 1 ) {
say STDERR "LOOP: $id";
defer {
eval { die };
say STDERR "DEFER: $id";
}
say STDERR "PRE-DEFER: $id";
} |
Thanks for narrowing it down further.
|
Since @haarg has demonstrated that this problem is not specific to Type::Params, we should change the subject line of this issue. What should we change it to? |
On Mon, Mar 03, 2025 at 02:46:00PM -0800, James E Keenan wrote:
jkeenan left a comment (Perl/perl5#23064)
Since @haarg has demonstrated that this problem is not specific to Type::Params, we should change the subject line of this issue. What should we change it to?
I've changed it to:
defer/finally block with caught exception exits current runops loop
…--
The warp engines start playing up a bit, but seem to sort themselves out
after a while without any intervention from boy genius Wesley Crusher.
-- Things That Never Happen in "Star Trek" #17
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
When calling a subroutine which uses
Type::Params::signature
inside of adefer
block, the process will stop without warning if a multiple signature match is made and the successful match is against the second or later alternate.Steps to Reproduce
To reproduce the issue, run the following script with the environment variable
BUG
set to 3.Setting
BUG
to 1 or 2 illustrates thatType::Params::signature
works in the case that a single signature is available to be matched, or the first alternative in a multiple signature matches.For example,
If the
defer
keyword is removed (retaining the code block), the correct output is obtained forBUG=3
Flags
Perl configuration
The text was updated successfully, but these errors were encountered: