diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-02-14 14:39:21 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-02-14 14:39:21 +0000 |
commit | 7e623da313ab504bf323b0f65cb47dca22423be3 (patch) | |
tree | 8f6d504dfcf5e6d279d6c46542280b6fc1b7793e /t/lib | |
parent | c91c3a7516528643b435e162ebf2189b64c15290 (diff) | |
download | perl-7e623da313ab504bf323b0f65cb47dca22423be3.tar.gz |
Revert change #33302. This change was wrong, since it was
using OP_ENTERSUB as a LISTOP, whereas it's a UNOP.
p4raw-link: @33302 on //depot/perl: 781e3f050073176aa21ffc243184a1cb57f4ec92
p4raw-id: //depot/perl@33307
Diffstat (limited to 't/lib')
-rw-r--r-- | t/lib/warnings/gv | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/t/lib/warnings/gv b/t/lib/warnings/gv index 6086655383..42565f2325 100644 --- a/t/lib/warnings/gv +++ b/t/lib/warnings/gv @@ -39,8 +39,6 @@ sub Other::AUTOLOAD { 1 } sub Other::fred {} @ISA = qw(Other) ; use warnings 'deprecated' ; fred() ; -my $x = \&barney; -(bless[])->barney; EXPECT Use of inherited AUTOLOAD for non-method main::fred() is deprecated at - line 5. ######## |