xref: /openbsd-src/gnu/usr.bin/perl/dist/autouse/t/lib/MyTestModule2.pm (revision 1ad61ae0a79a724d2d3ec69e69c8e1d1ff6b53a0)
1package MyTestModule2;
2use warnings;
3
4@ISA = Exporter;
5require Exporter;
6@EXPORT_OK = 'test_function2';
7
8sub test_function2 {
9  return 'works';
10}
11
121;
13