summaryrefslogtreecommitdiff
path: root/t/lib/Role/Child.pm
blob: 4c7043652ea1527ad4b167b53a089e9f704b6086 (plain)
1
2
3
4
5
6
7
8
package Role::Child;
use Moose::Role;

with 'Role::Parent' => { -alias => { meth1 => 'aliased_meth1', } };

sub meth1 { }

1;