[perl #131841] [BUG] In a 'unit module', a 'die' along any CATCH block causes a compiler error

2017-08-10 Thread Zoffix Znet via RT
On Mon, 07 Aug 2017 11:08:07 -0700, timo wrote: > Annoyingly, 2017.07 has a bug that makes every --ll-exception print > that Just for reference, if needed, it's possible to work around that bug by telling rakudo to use a custom exceptions handler: cd $(mktemp -d) mkdir Exceptions ech

[perl #131841] [BUG] In a 'unit module', a 'die' along any CATCH block causes a compiler error

2017-08-10 Thread Zoffix Znet via RT
On Mon, 07 Aug 2017 11:08:07 -0700, timo wrote: > Annoyingly, 2017.07 has a bug that makes every --ll-exception print > that Just for reference, if needed, it's possible to work around that bug by telling rakudo to use a custom exceptions handler: cd $(mktemp -d) mkdir Exceptions ech

[perl #131841] [BUG] In a 'unit module', a 'die' along any CATCH block causes a compiler error

2017-08-07 Thread via RT
# New Ticket Created by Darek Cidlinsky # Please include the string: [perl #131841] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131841 > A minimal example: echo 'unit module Foo; die; CATCH { }' > Foo.pm6; perl6 -I.