use warnings; #### BEGIN { require warnings; import warnings; } #### BEGIN { my $debug = 1; if ($debug) { require warnings; import warnings; } } #### my $debug; BEGIN { $debug = 1; } use if $debug, 'warnings';