3 Can't locate package %s for @%s::ISA
6 Use of inherited AUTOLOAD for non-method %s::%.*s() is deprecated
7 sub Other::AUTOLOAD { 1 } sub Other::fred {}
11 Use of $# is deprecated
12 Use of $* is deprecated
17 Mandatory Warnings ALL TODO
20 Had to create %s unexpectedly [gv_fetchpv]
21 Attempt to free unreferenced glob pointers [gp_free]
26 @ISA = qw(Fred); joe()
28 Can't locate package Fred for @main::ISA at - line 3.
29 Undefined subroutine &main::joe called at - line 3.
33 @ISA = qw(Fred); joe()
35 Undefined subroutine &main::joe called at - line 3.
38 sub Other::AUTOLOAD { 1 } sub Other::fred {}
40 use warnings 'deprecated' ;
43 Use of inherited AUTOLOAD for non-method main::fred() is deprecated at - line 5.
46 use warnings 'deprecated' ;
49 no warnings 'deprecated' ;
53 Use of $# is deprecated at - line 3.
54 Use of $* is deprecated at - line 4.