summaryrefslogtreecommitdiff
path: root/cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm
blob: 34642fb483f872e6c50235fa732acf97fe146f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package NotAutoLoad;

use strict;
use warnings;

require Exporter;

our @ISA = qw/Exporter/;
our @EXPORT = qw/func3/;

sub func3 {
    return 1;
}

sub func4 {
    return 1;
}

1;