... # Exporting methods use Exporter; our @EXPORT_OK = qw(first_method); our @ISA = qw(Exporter); sub import { print "First::import(): \@EXPORT_OK = @EXPORT_OK, args = @_\n"; goto &{Exporter::import}; # alternatively, if you dislike hardcoding stuff: # if (my $super_import = __PACKAGE__->can("SUPER::import") ) { # goto &{$super_import}; # } } ...