This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4521bb0
)
defined @array and defined %hash need no warnings 'deprecated';
author
Nicholas Clark
<nick@ccl4.org>
Tue, 13 Oct 2009 14:33:16 +0000
(15:33 +0100)
committer
Jesse Vincent
<jesse@bestpractical.com>
Fri, 16 Oct 2009 16:30:16 +0000
(12:30 -0400)
t/op/undef.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/undef.t
b/t/op/undef.t
index
8bfecab
..
7afaf9c
100644
(file)
--- a/
t/op/undef.t
+++ b/
t/op/undef.t
@@
-72,6
+72,7
@@
like $@, qr/^Modification of a read/;
{
require Tie::Hash;
tie my %foo, 'Tie::StdHash';
+ no warnings 'deprecated';
ok defined %foo;
%foo = ( a => 1 );
ok defined %foo;
@@
-80,6
+81,7
@@
like $@, qr/^Modification of a read/;
{
require Tie::Array;
tie my @foo, 'Tie::StdArray';
+ no warnings 'deprecated';
ok defined @foo;
@foo = ( a => 1 );
ok defined @foo;