in reply to Re: SIGDIE problem at eval compile time
in thread SIGDIE problem at eval compile time
If you change the code to see whether it actually dies, it does:
Now, since the die is inside an eval, the die doesn't cause the program to terminate.$ perl -e 'eval{die @_ if $^S; 1} or print "$@"' Died at -e line 1.
|
|---|