On Wednesday 27 August 2008 07:26:00 Moritz Lenz wrote:

> Carl MXXsak (via RT) wrote:

> > r30589:
> > $ cat for-loop-recursion.bug
> > sub f($l) {
> >     return() if $l <= 0;
> >     say "entering $l";
> >     for 1..3 {
> >       f($l-1);
> >       say "looping in $l";
> >     }
> > }
> > f(2);
>
> I re-worked that as a test and added it to t/spec/S04-statements/for.t

If you or Carl can provide a PIR program which exhibits he problem, I'll fix 
it.

-- c

Reply via email to