10.16.3. Discussion
If you use nested subroutines in other programming languages with
their own private variables, you'll have to work at it a bit in Perl.
The intuitive coding of this kind of thing gives the warning "will
not stay shared." For example, this won't work:
sub outer {
my $x = $_[0] + 35;
sub inner { return $x * 19 } # WRONG
return $x + inner( );
}
The following is a workaround:
sub outer {
my $x = $_[0] + 35;
local *inner = sub { return $x * 19 };
return $x + inner( );
}