xref: /openbsd-src/gnu/usr.bin/perl/cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm (revision 5a38ef86d0b61900239c7913d24a05e7b88a58f0)
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