1N/A gv.c AOK
1N/A
1N/A Can't locate package %s for @%s::ISA
1N/A @ISA = qw(Fred); joe()
1N/A
1N/A Use of inherited AUTOLOAD for non-method %s::%.*s() is deprecated
1N/A sub Other::AUTOLOAD { 1 } sub Other::fred {}
1N/A @ISA = qw(Other) ;
1N/A fred() ;
1N/A
1N/A Use of $# is deprecated
1N/A Use of $* is deprecated
1N/A
1N/A $a = ${"#"} ;
1N/A $a = ${"*"} ;
1N/A
1N/A Mandatory Warnings ALL TODO
1N/A ------------------
1N/A
1N/A Had to create %s unexpectedly [gv_fetchpv]
1N/A Attempt to free unreferenced glob pointers [gp_free]
1N/A
1N/A__END__
1N/A# gv.c
1N/Ause warnings 'misc' ;
1N/A@ISA = qw(Fred); joe()
1N/AEXPECT
1N/ACan't locate package Fred for @main::ISA at - line 3.
1N/AUndefined subroutine &main::joe called at - line 3.
1N/A########
1N/A# gv.c
1N/Ano warnings 'misc' ;
1N/A@ISA = qw(Fred); joe()
1N/AEXPECT
1N/AUndefined subroutine &main::joe called at - line 3.
1N/A########
1N/A# gv.c
1N/Asub Other::AUTOLOAD { 1 } sub Other::fred {}
1N/A@ISA = qw(Other) ;
1N/Ause warnings 'deprecated' ;
1N/Afred() ;
1N/AEXPECT
1N/AUse of inherited AUTOLOAD for non-method main::fred() is deprecated at - line 5.
1N/A########
1N/A# gv.c
1N/Ause warnings 'deprecated' ;
1N/A$a = ${"#"};
1N/A$a = ${"*"};
1N/Ano warnings 'deprecated' ;
1N/A$a = ${"#"};
1N/A$a = ${"*"};
1N/AEXPECT
1N/AUse of $# is deprecated at - line 3.
1N/AUse of $* is deprecated at - line 4.