[perl #126858] infinite recursion with put and kinda recursive arrays

2015-12-09 Thread via RT
# New Ticket Created by Wenzel Peppmeyer # Please include the string: [perl #126858] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126858 > my @b; @b = @b, 1; put @b; OUTPUT«Memory allocation failed; could not allocate 8192

[perl #82424] [BUG] Infinite recursion in parcel construction and assignment when the parcel contains the LHS in Rakudo

2015-08-27 Thread Will Coleda via RT
On Tue Jan 18 14:35:46 2011, masak wrote: > rakudo: my $a = 1; my $b = 2; $a = ($a, $b); say $a.perl > rakudo 388eed: OUTPUT«maximum recursion depth exceeded␤ in > 'Block::count' at line 6077:CORE.setting␤ in 'Block::count' at line > 6077:CORE.setting␤ in 'Any::join' at line 1␤ in 'List::perl

[perl #106932] Junctions in subsignatures can cause infinite recursion

2015-07-09 Thread Will Coleda via RT
On Fri Dec 23 21:12:40 2011, sorear wrote: > 21:09 < sorear> rakudo: sub foo(Mu $x [ $y ]) { }; foo([ any(1,2,3) ]) > 21:09 <+p6eval> rakudo eb6c4b: OUTPUT«(timeout)maximum recursion depth > exceeded␤» > > There's no direct junction, so AUTOTHREAD makes no progress when called. E

[perl #120931] [BUG] Infinite recursion when calling a role method from within the role block in Rakudo

2014-10-17 Thread Christian Bartolomaeus via RT
This works now: $ perl6-m -e 'role R { method foo {}; R.foo }; say "alive"' alive $ perl6-p -e 'role R { method foo {}; R.foo }; say "alive"' alive $ perl6-j -e 'role R { method foo {}; R.foo }; say "alive"' alive I added a test to S14-roles/basic.t with the following commit: https://github.c

[perl #106932] Junctions in subsignatures can cause infinite recursion

2014-02-24 Thread Will Coleda via RT
Verified behavior, unchanged in e8cea1. -- Will "Coke" Coleda

[perl #120931] [BUG] Infinite recursion when calling a role method from within the role block in Rakudo

2014-01-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #120931] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=120931 > r: role R { method foo {}; R.foo } rakudo-parrot e32249: OUTPUT«(timeout)» ..rakudo-jv

[perl #106932] Junctions in subsignatures can cause infinite recursion

2011-12-24 Thread via RT
# New Ticket Created by Stefan O'Rear # Please include the string: [perl #106932] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=106932 > 21:09 < sorear> rakudo: sub foo(Mu $x [ $y ]) { }; foo([ any(1,2,3) ]) 21:09 <+p

[perl #105890] infinite recursion when executing say ~$/

2011-12-11 Thread via RT
# New Ticket Created by Stephane Payrard # Please include the string: [perl #105890] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=105890 > using nom d2a09607bf929dc3bb69cc254a20649910a8d8f7 $ perl6 parseparsed ... m

[perl #100758] assigning an array to itself leads to infinite recursion

2011-10-05 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #100758] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=100758 > 18:38 < felher> nom: my @array = 1,2,3; @array = @array 18:38 < felher> problem kn

[perl #89768] [BUG] Infinite recursion when doing '10 % i' in Rakudo

2011-05-03 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #89768] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=89768 > rakudo: say 1 if 10 % i rakudo 7114f5: OUTPUT«maximum recursion depth exceeded [...]

[perl #87066] [BUG] Infinite recursion when indexing typed array in Rakudo

2011-03-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #87066] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=87066 > rakudo: (my Int @a)[2]; say "alive" rakudo 792e86: OUTPUT«maximum recursion depth exce

[perl #85514] [BUG] Infinite recursion when trying to numify a sub in Rakudo

2011-03-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #85514] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=85514 > rakudo: +sub {} rakudo bd134e: OUTPUT«maximum recursion depth exceeded␤ in 'Cool::Num

[perl #82424] [BUG] Infinite recursion in parcel construction and assignment when the parcel contains the LHS in Rakudo

2011-01-18 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #82424] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=82424 > rakudo: my $a = 1; my $b = 2; $a = ($a, $b); say $a.perl rakudo 388eed: OUTPUT«maximum

Re: [perl #81982] [BUG] Infinite recursion where none was expected after rebinding &return in Rakudo

2011-01-10 Thread Patrick R. Michaud
On Sat, Jan 08, 2011 at 02:59:38PM -0800, Carl Mäsak wrote: > rakudo: my &r = &return; sub f { &return := -> $v { say > "LOL!"; &r($v) }; return(42) }; say f [23:45] > rakudo e7e9d5: > OUTPUT«LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤LOL!␤

[perl #81982] [BUG] Infinite recursion where none was expected after rebinding &return in Rakudo

2011-01-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #81982] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=81982 > rakudo: my &r = &return; sub f { &return := -> $v { say "LOL!"; &r($v) }; return(42) };

[perl #79270] [BUG] Infinite recursion when doing 0 .. *-1 (or 0 ..^ *-1) in Rakudo

2010-11-16 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #79270] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=79270 > rakudo: my @a = ; @a[0 ..^ *-1] >>~=>> "\n"; say @a.perl rakudo 015d77: OUTPUT«(timeou

[perl #75868] Infinite recursion when using Match object as hash key

2010-06-20 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #75868] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=75868 > ./perl6 -e 'my %h = a => 1; "a" ~~ /./; say %h{$/}' maximum recursion depth exceeded in

[perl #73326] [BUG] Infinite recursion in stringification of a capture in Rakudo

2010-04-29 Thread Carl Mäsak via RT
On Tue Apr 27 22:04:18 2010, quester wrote: > It seems to me that this issue was resolved at some point in the past, > "say ~\()" now says "Capture()<0x4ed3138>". So it does. Resolving.

[perl #73082] [BUG] Infinite recursion in Array.^methods in Rakudo

2010-04-27 Thread jn...@jnthn.net via RT
On Thu Feb 25 03:16:42 2010, masak wrote: > rakudo: say ~Array.^methods > rakudo e79112: OUTPUT«maximum recursion depth exceeded [...] > o.O > i broketed it! > * masak submits rakudobug > rakudo: Array.^methods > rakudo e79112: OUTPUT«maximum recursion depth exceeded [...] I fixed .^methods

[perl #73326] [BUG] Infinite recursion in stringification of a capture in Rakudo

2010-03-07 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73326] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73326 > rakudo: say ~\(1;2;3) # masakbot rakudo b348b3: OUTPUT«maximum recursion depth exceede

[perl #73082] [BUG] Infinite recursion in Array.^methods in Rakudo

2010-02-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73082] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73082 > rakudo: say ~Array.^methods rakudo e79112: OUTPUT«maximum recursion depth exceeded [..

[PATCH] Test::Harness and Devel::Cover combine with overloading to cause infinite recursion in Carp.pm

2005-09-22 Thread demerphq
cause Carp to go into infinite recursion. Also attached is a patch to Carp which will prevent the infinite recursion. (Apparently defined() will trigger the overload, but ref() will not) The combination of Devel::Cover, Test::Harness, overloading and if modifiers cause overloading to be triggered

Re: Infinite recursion

2004-06-30 Thread Paul Johnson
-thread-multi/B/Deparse.pm line 3551. > Deep recursion on subroutine "B::Deparse::find_scope" at > /usr/lib/perl5/5.8.1/i386-linux-thread-multi/B/Deparse.pm line 1317. > > However, nothing seems to be affected - the table is generated by > 'cover'. I'd l

Infinite recursion

2004-06-30 Thread Vsevolod (Simon) Ilyushchenko
Hi, I have tried to run Devel::Cover on my tests that use Test::Unit, and I am getting this after the code is run: Deep recursion on subroutine "B::Deparse::find_scope" at /usr/lib/perl5/5.8.1/i386-linux-thread-multi/B/Deparse.pm line 1317. Deep recursion on subroutine "B::Deparse::dq" at /usr/

Bug: infinite recursion caused by unary +

2002-09-10 Thread Aaron Sherman
The following two lines of Perl 6 causes the compiler to recurse infinitely, which shows off Perl 5's recursion detection quite nicely :) my $x = 1; $x = +$x; -- Aaron Sherman <[EMAIL PROTECTED]> http://www.ajs.com/~ajs