[perl #127987] Block.assuming method apparently not reentrant

2016-04-27 Thread jn...@jnthn.net via RT
On Mon Apr 25 06:10:50 2016, sml...@gmail.com wrote: > The following works fine: > > for (^100).race(batch=>1) { {1 + $^a}(10) } > > But the following pretty reliably crashes: > > for (^100).race(batch=>1) { {1 + $^a}.assuming(10)() } > > If even crashes when EVAL is used to make sure each

[perl #127987] Block.assuming method apparently not reentrant

2016-04-25 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #127987] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127987 > The following works fine: for (^100).race(batch=>1) { {1 + $^a}(10) } But the following