[perl #131785] [BUG] - runtime looping.

2017-08-11 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
Great analysis! The first issue seems to be already mentioned in RT #126112 (and I vaguely recall one more ticket, but I'm failing to find it now). This ticket seems to be getting a bit unmanageable, please file smaller tickets for every issue you discover. On 2017-08-10 21:36:34,

[perl #131785] [BUG] - runtime looping.

2017-08-10 Thread Brian S. Julin via RT
Analysis... you've run into a nest of LTA/bugs. 1) First off, this will loop: perl6 -e 'class A does Numeric { }; say A.new + A.new' The reason it loops is because the default infix:<+> (provided by Numeric) does this: multi sub infix:<+>(\a, \b){ a.Numeric + b.Numeric } ...and the

[perl #131785] [BUG] - runtime looping.

2017-07-23 Thread via RT
# New Ticket Created by # Please include the string: [perl #131785] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131785 > Greetings! I have written a module to process some numeric data types and found that the run time