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