xref: /openbsd-src/gnu/usr.bin/perl/dist/autouse/t/lib/MyTestModule2.pm (revision 898184e3e61f9129feb5978fad5a8c6865f00b92)
1*898184e3Ssthenpackage MyTestModule2;
2*898184e3Ssthenuse warnings;
3*898184e3Ssthen
4*898184e3Ssthen@ISA = Exporter;
5*898184e3Ssthenrequire Exporter;
6*898184e3Ssthen@EXPORT_OK = 'test_function2';
7*898184e3Ssthen
8*898184e3Ssthensub test_function2 {
9*898184e3Ssthen  return 'works';
10*898184e3Ssthen}
11*898184e3Ssthen
12*898184e3Ssthen1;
13