-
Notifications
You must be signed in to change notification settings - Fork 572
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
sort{goto} #12242
Comments
From @cpansproutThis is related to #113936. $ perl5.15.9 -e '@a=sort { goto FOO; FOO: 1,2,3} 1,2,3; FOO:' $ perl5.15.9 -e '@a=sort {;{ goto FOO; FOO: 1,2,3}} 1,2,3; FOO:' Flags: Site configuration information for perl 5.17.2: Configured by sprout at Mon Jun 25 13:28:03 PDT 2012. Summary of my perl5 (revision 5 version 17 subversion 2) configuration: Locally applied patches: @INC for perl 5.17.2: Environment for perl 5.17.2: |
From zefram@fysh.orgSimilar and related: $ perl -lwe 'sub aaa ($$) { goto FOO; FOO: $_[0] <=> $_[1] } print sort aaa (7, 3, 5, 2)' The check for exiting a pseudo block is being applied too soon. It needs -zefram |
The RT System itself - Status changed from 'new' to 'open' |
From zefram@fysh.orgI've fixed the multicalled-sub case in The original sort-block case is trickier. Deferring the -zefram |
Migrated from rt.perl.org#113938 (status was 'open')
Searchable as RT113938$
The text was updated successfully, but these errors were encountered: