[perl #56748] [BUG] Null PMC access in type()

2008-08-08 Thread [EMAIL PROTECTED] via RT
On Wed Jul 09 10:48:19 2008, [EMAIL PROTECTED] wrote: > I found a small piece of code that reproduces the "Null PMC access in > type()" error: > > sub f(Int $n){ > if ($n >= 0 ){ > f($n-1); > } > } > f(0); > > produces the above error on parrot + rakudo r29207, Debian GNU Linux >

[perl #56748] [BUG] Null PMC access in type()

2008-07-09 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #56748] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=56748 > I found a small piece of code that reproduces the "Null PMC access in type()" error: sub