'alias' and 'excludes' in with() are deprecated
[gitmo/Mouse.git] / t / lib / Role / Child.pm
1 package Role::Child;
2 use Mouse::Role;
3
4 with 'Role::Parent' => { -alias => { meth1 => 'aliased_meth1', } };
5
6 sub meth1 { }
7
8 1;