summaryrefslogtreecommitdiff
path: root/t/op/kvaslice.t
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@cpan.org>2014-01-14 08:34:19 -0500
committerRicardo Signes <rjbs@cpan.org>2014-01-14 09:33:02 -0500
commitd401967c52db1a9a5958b708005a5be96d545f55 (patch)
tree4ca9daf52a6ef13995b029b2694147370d766295 /t/op/kvaslice.t
parent1df6869d4e6a2f5ae04d9304cae006ce6cf7bf96 (diff)
downloadperl-d401967c52db1a9a5958b708005a5be96d545f55.tar.gz
rename aggref warnings to autoderef
Diffstat (limited to 't/op/kvaslice.t')
-rw-r--r--t/op/kvaslice.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/kvaslice.t b/t/op/kvaslice.t
index 3e573adbab..e8aa14e42d 100644
--- a/t/op/kvaslice.t
+++ b/t/op/kvaslice.t
@@ -182,7 +182,7 @@ plan tests => 40;
{
my %h = 'a'..'b';
my @i = \%h;
- no warnings 'syntax', 'experimental::aggref';
+ no warnings 'syntax', 'experimental::autoderef';
my ($k,$v) = each %i[0];
is $k, 'a', 'key returned by each %array[ix]';
is $v, 'b', 'val returned by each %array[ix]';