# 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;