summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/dist/autouse/t/lib/MyTestModule.pm
blob: f650a45d8b61afe2f65588cf0f2164aa226bbc99 (plain) (blame)
1
2
3
4
5
6
7
8
package MyTestModule;
use strict;

sub test_function {
  return 'works';
}

1;