On Sat Mar 16 10:02:08 2013, jn...@jnthn.net wrote:
> On Thu Jun 07 13:52:49 2012, moritz wrote:
> > r: multi sub foo() { say 'here'; LEAVE say 'not here'; };
> foo;
> > rakudo 332540: OUTPUT«here»
> >
> > Works without the "multi":
> >
> > r: sub foo() { say 'here'; LEAVE say 'not here' };
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #113548]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org:443/rt3/Ticket/Display.html?id=113548 >
r: multi sub foo() { say 'here'; LEAVE say 'not here'; }; foo;
rakudo 332540: OU