diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-11-09 06:30:03 -0800 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2014-01-14 09:33:01 -0500 |
commit | 0953b66bdb6b9cd4da676d1614e87fe081b20a9c (patch) | |
tree | 965f4ed80afcc8a81700f274392e1e8cf12a2a5f /t/op/kvaslice.t | |
parent | ef40a5dd8380ca9dcbf40ccf6f706a4b5e25bbc6 (diff) | |
download | perl-0953b66bdb6b9cd4da676d1614e87fe081b20a9c.tar.gz |
Make key/push $scalar experimental
We need a better name for the experimental category, but I have not
thought of one, even after sleeping on it.
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 0738a17a87..3e573adbab 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'; + no warnings 'syntax', 'experimental::aggref'; my ($k,$v) = each %i[0]; is $k, 'a', 'key returned by each %array[ix]'; is $v, 'b', 'val returned by each %array[ix]'; |