xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/lib/MyCustom.pm (revision c020cf82e0cc147236f01a8dca7052034cf9d30d)
1# avoid cut-n-paste exhaustion with this mixin
2
3package MyCustom;
4use strict;
5use warnings;
6
7sub custom {
8    my $self = shift;
9    $main::CUSTOM{ ref($self) || $self }++;
10    return $self;
11}
12
131;
14