Well as I said, I couldn't test while posting from mobile.
I though that post-fix-for doesn't have an own scope, analogous to post-fix-if
So I ran a test and it turned out that post-fix-for is neither fish nor flesh, it's pretending and denying having an own scope ... ugh ...oO
please notice how the redeclaration of $x is reported but the value gets lost.
Looks like a bug...
use strict;
use warnings;
my $y=666 if 1;
warn $y;
my $x=1;
my $x=42 for 1;
warn $x;
"my" variable $x masks earlier declaration in same scope at c:/tmp/pm/
+scope_postfix_for.pl line 12.
666 at c:/tmp/pm/scope_postfix_for.pl line 7.
Use of uninitialized value $x in warn at c:/tmp/pm/scope_postfix_for.p
+l line 16.
Warning: something's wrong at c:/tmp/pm/scope_postfix_for.pl line 16.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|