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