Re: [perl #62432] Rakudo segfault when passing/calling sub

2009-01-16 Thread Patrick R. Michaud
On Fri, Jan 16, 2009 at 01:43:11AM -0800, I Sop wrote: > With r35615. > > Following script to perl6 segfaults: > sub yum() { } > sub callit(&x) { x; } > callit yum; This now responds with an appropriate exception: $ cat x.pl sub yum() { } sub callit(&x) { x; } callit yum; $ ./parrot p

[perl #62432] Rakudo segfault when passing/calling sub

2009-01-16 Thread via RT
# New Ticket Created by I Sop # Please include the string: [perl #62432] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=62432 > With r35615. Following script to perl6 segfaults: sub yum() { } sub callit(&x) { x; } callit y