{ package Base; use strict; use warnings; sub import { strict->import; warnings->import; } } { package A; use Base; # Now A has strict and warnings }