in reply to Declaration with conditional assignment not initializing loop local variable

Yes, the note in perlsyn advising against trying to use this construct:

       NOTE: The behaviour of a "my" statement modified with a statement
       modifier conditional or loop construct (e.g. "my $x if ...") is
       undefined.  The value of the "my" variable may be "undef", any
       previously assigned value, or possibly anything else.  Don't rely on
       it.  Future versions of perl might do something different from the
       version of perl you try it out on.  Here be dragons.

The cake is a lie.
The cake is a lie.
The cake is a lie.

  • Comment on Re: Declaration with conditional assignment not initializing loop local variable

Replies are listed 'Best First'.
Re^2: Declaration with conditional assignment not initializing loop local variable
by justjohn (Initiate) on Jul 30, 2008 at 20:06 UTC
    Ah, thanks. Documented => true. My apologies for missing that.