1package NotAutoLoad; 2 3use strict; 4use warnings; 5 6require Exporter; 7 8our @ISA = qw/Exporter/; 9our @EXPORT = qw/func3/; 10 11sub func3 { 12 return 1; 13} 14 15sub func4 { 16 return 1; 17} 18 191; 20