Skip Menu |

This queue is for tickets about the Syntax-Feature-Try CPAN distribution.

Report information
The Basics
Id: 111215
Status: open
Priority: 0/
Queue: Syntax-Feature-Try

People
Owner: Nobody in particular
Requestors: EDAVIS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.003
Fixed in: (no value)



Subject: Segmentation fault with 'goto'
This segfaults: #!/usr/bin/perl use syntax 'try'; foreach (1 .. 1_000_000) { X: try { die } catch ($err) { goto X } } Can you reproduce it?
On 2016-01-15 11:28:07, EDAVIS wrote: Show quoted text
> This segfaults: > > #!/usr/bin/perl > use syntax 'try'; > foreach (1 .. 1_000_000) { > X: > try { die } > catch ($err) { goto X } > } > > Can you reproduce it?
It segfaults even without the foreach.