[perl #113548] LEAVE phasers in multi subs do not fire

2013-03-29 Thread Will Coleda via RT
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' };

[perl #113548] LEAVE phasers in multi subs do not fire

2012-06-07 Thread via RT
# 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