diff options
author | Ricardo Signes <rjbs@cpan.org> | 2014-01-14 08:34:19 -0500 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2014-01-14 09:33:02 -0500 |
commit | d401967c52db1a9a5958b708005a5be96d545f55 (patch) | |
tree | 4ca9daf52a6ef13995b029b2694147370d766295 /t/op/kvaslice.t | |
parent | 1df6869d4e6a2f5ae04d9304cae006ce6cf7bf96 (diff) | |
download | perl-d401967c52db1a9a5958b708005a5be96d545f55.tar.gz |
rename aggref warnings to autoderef
Diffstat (limited to 't/op/kvaslice.t')
-rw-r--r-- | t/op/kvaslice.t | 2 |
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]'; |