[perl #62432] Rakudo segfault when passing/calling sub
[email protected] (I Sop) Fri, 16 Jan 2009 01:43:11 -0800
| Newsgroups | perl.perl6.internals |
|---|---|
| Message-ID | <[email protected]> |
# New Ticket Created by I Sop
# Please include the string: [perl #62432]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=62432 >
With r35615.
Following script to perl6 segfaults:
sub yum() { }
sub callit(&x) { x; }
callit yum;
But this doesn't:
sub yum() { }
sub callit(&x) { x; }
callit &yum;
Neither does this:
sub yum() { }
yum;