diff options
author | Father Chrysostomos <sprout@cpan.org> | 2017-11-16 20:07:27 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2017-11-16 20:07:36 -0800 |
commit | eb611d083dade65d1aa071a4587336669efc5ebf (patch) | |
tree | ef084bc14a18a5561827dc6bcfa6ff02cc940874 /ext | |
parent | a6c31837e629c46be2f7496149b36a4b79f93484 (diff) | |
download | perl-eb611d083dade65d1aa071a4587336669efc5ebf.tar.gz |
Suppress warning in XS-APItest’s sniscow.t
Diffstat (limited to 'ext')
-rw-r--r-- | ext/XS-APItest/t/sviscow.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/XS-APItest/t/sviscow.t b/ext/XS-APItest/t/sviscow.t index bcc9da8ebd..d0f3062f5d 100644 --- a/ext/XS-APItest/t/sviscow.t +++ b/ext/XS-APItest/t/sviscow.t @@ -1,10 +1,10 @@ use strict; -use warnings; no warnings 'once'; use Test::More tests => 1; use XS::APItest; use Hash::Util 'lock_value'; +use warnings; no warnings 'once', 'Hash::Util'; my %h; $h{g} = *foo; |