Method-Delegation

 view release on metacpan or  search on metacpan

t/delegate.t  view on Meta::CPAN

  'Supplying both "to" and "maybe_to" should fail';

done_testing;

{

    package Second;

    sub new {
        my $class = shift;
        return bless {} => $class;
    }

    sub name { return __PACKAGE__ }
}

{

    package Third;
    sub new { bless {} => shift }

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.053 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )