Yes, use vars qw ( $AUTOLOAD ); would do the trick. Better yet, so would the following:
sub AUTOLOAD { our $AUTOLOAD; my $subroutine_name = $AUTOLOAD; ... }
The ones that need to be declared are the ones not listed by the following:
perl -e "$,=$\=$/; print keys %::"
In reply to Re: Use of $AUTOLOAD and strict
by ikegami
in thread Use of $AUTOLOAD and strict
by jira0004
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |