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