use strict;
use warnings;
# ...
{
no warnings 'deprecated';
%hash->{ silly } = 'foo';
}
####
use strict;
use warnings;
require Exporter;
{
no warnings 'once';
*import = \&Exporter::import;
}
####
Name "main::import" used only once: possible typo...
####
*import = *import = \&Exporter::import;