add-package fix
[p5sagit/p5-mst-13.2.git] / lib / Module / Load / t / to_load / TestModule.pm
CommitLineData
0819efc5 1package TestModule;
2
3use strict;
4require Exporter;
5use vars qw(@EXPORT @EXPORT_OK @ISA);
6
7@ISA = qw(Exporter);
8@EXPORT = qw(func2);
9@EXPORT_OK = qw(func1);
10
11sub func1 { return "func1"; }
12
13sub func2 { return "func2"; }
14
151;