in reply to Curious result of using "my ... if ..."

See perlsyn, specifically the section on Statement Modifiers:

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.

Replies are listed 'Best First'.
Re^2: Curious result of using "my ... if ..."
by jrw (Monk) on May 16, 2007 at 11:27 UTC
    Thanks! I couldn't find it before, but I see it now in perlsyn.