in reply to Re^2: Global vs. local?
in thread Global vs. local?
I have no explanation for the failure. I tried to replicate your behavior with 5.8.8 and 5.10.0 but my tests worked in every case I tried. My last test program was:
#use strict; use warnings; sub subfunction { foreach my $j (0..5) { my $SUB = 'testsub'.$j; *$SUB = sub { display($j); }; } } sub display { my $x = shift; print "\$x = $x\n"; } subfunction(); &testsub0(); &testsub1(); &testsub2(); &testsub3(); &testsub4(); &testsub5(); __END__ $x = 0 $x = 1 $x = 2 $x = 3 $x = 4 $x = 5
Can you post a minimal running test script that demonstrates the bug unexpected behavior?
What version of perl and what platform?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Global vs. local?
by jpavel (Sexton) on May 28, 2009 at 12:02 UTC | |
by Corion (Patriarch) on May 28, 2009 at 12:10 UTC | |
by ig (Vicar) on May 28, 2009 at 12:35 UTC |