Subject: | Segmentation fault, for the record |
On my system (Fedora 23) this script gives a segmentation fault. So far I have not been able to narrow it down further. I post it here for the record and to see if you can reproduce it.
use syntax 'try';
foreach (2, 3, 4) {
try {
die "odd\n" if $_ % 2;
}
catch ($err) {
next;
}
warn "got here $_\n";
}