blob: c24013db907b885b1065c2b335e25ed4cfaea022 [file] [log] [blame]
# avoid cut-n-paste exhaustion with this mixin
package MyCustom;
use strict;
sub custom {
my $self = shift;
$main::CUSTOM{ ref($self) || $self }++;
return $self;
}
1;