# New Ticket Created by  Sam S. 
# Please include the string:  [perl #129234]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=129234 >


If you `die` inside a `map/for` that is being `hyper/race`d...

    for (1..1).hyper { die };  sleep 1;  say "Alive";

...it prints the exception's backtrace, but then resumes the program as if 
nothing had happened:

    Died
      in block  at -e line 1
    
    Alive

Reply via email to